Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > contrib-backports > by-pkgid > 5a28ce08f20e322d24ac159a4334c346 > files > 2364

python-enthought-mayavi2-2.2.0-1mdv2008.1.x86_64.rpm

""" A class that we can extend/adapt! """


# Enthought library imports.
from enthought.traits.api import HasTraits, Str


class Baz(HasTraits):
    """ A class that we can extend/adapt! """

    name = Str
    
    def baz(self):
        """ baz! """

        print 'Baz.baz', id(self), self.name

        return

#### EOF ######################################################################