Sophie

Sophie

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

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

""" Used in the example to provide a Traits UI view via a UOL. """


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


class Blang(HasTraits):
    """ Used in the example to provide a Traits UI view via a UOL. """

    name = Str('A Blang')
    x    = Int(42)
    y    = Int(100)


# This is the symbol that the UOL references.
blang = Blang()

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