Sophie

Sophie

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

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

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

# wizard.py ---Example of a traits-based wizard UI
from traits.api import HasTraits, Int, Str

class Person(HasTraits):
    name = Str
    age = Int
    street = Str
    city = Str
    state = Str
    pcode = Str

bill = Person()
bill.configure_traits(kind='modal')