Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 2f465c7af448b596f18821b95c37334d > files > 311

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

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

# wildcard_rules.py --- Example of trait attribute wildcard rules

#--[Imports]--------------------------------------------------------------------
from traits.api import Any, HasTraits, Int, Python

#--[Code]-----------------------------------------------------------------------
class Person(HasTraits):
    temp_count = Int(-1)
    temp_      = Any
    _          = Python