Sophie

Sophie

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

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

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

# traitprefixmap.py --- Example of using the TraitPrefixMap handler

#--[Imports]--------------------------------------------------------------------
from traits.api import Trait, TraitPrefixMap

#--[Code]-----------------------------------------------------------------------
boolean_map = Trait('true', TraitPrefixMap( {
                              'true': 1,
                              'yes':  1,
                              'false': 0,
                              'no':   0 } ) )