Sophie

Sophie

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

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

""" An example category. """


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


class ExampleCategory(HasTraits):
    """ An example category. """
    
    age = Int(99)
    
    def blargle(self):
        """ blargle! """
        
        print 'ExampleCategory.blargle', id(self), self.name, self.age
        
        return
    
#### EOF ######################################################################