Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > aaabadb7e29c32512528f8e4b50077d5 > files > 273

python-Traits-4.3.0-1.fc18.x86_64.rpm

#  Copyright (c) 2007, Enthought, Inc.
#  License: BSD Style.

# bad_self_ref.py -- Non-working example with self-referencing class definition

#--[Imports]--------------------------------------------------------------------
from traits.api import HasTraits, Instance

#--[Code]-----------------------------------------------------------------------
# Shows the incorrect way of defining a self-referencing class.
try:
    class Employee ( HasTraits ):

        # This won't work.
        # 'Employee' is not defined until the class definition is complete:
        manager = Instance( Employee )
except NameError, excp:
    print excp