Sophie

Sophie

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

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

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

# transient_metadata.py - Example of using 'transient' metadata

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

#--[Code]-----------------------------------------------------------------------

class DataBase ( HasTraits ):

    # The name of the data base file:
    file_name = File

    # The open file handle used to access the data base:
    file = Any( transient = True )