Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 92fdf0ccfd77e2407233c23f5e203339 > files > 155

python-pyface-doc-4.3.0-4.fc18.noarch.rpm

""" A simple example of some object model. """


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


class Person(HasTraits):
    """ A simple example of some object model! """

    # Age in years.
    age = Int

    # Name.
    name = Str

    ###########################################################################
    # 'object' interface.
    ###########################################################################

    def __str__(self):
        """ Return an informal string representation of the object. """

        return self.name

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