[code.view]

[top] / python / PyMOTW / exceptions / exceptions_AttributeError.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2008 Doug Hellmann All rights reserved.
     #
     """
     """
     
     __version__ = "$Id$"
     #end_pymotw_header
     
     class NoAttributes(object):
         pass
     
     o = NoAttributes()
     print o.attribute
     

[top] / python / PyMOTW / exceptions / exceptions_AttributeError.py

contact | logmethods.com