Package SCons :: Module SConsign :: Class Base
[hide private]
[frames] | no frames]

Class Base

source code

object --+
         |
        Base
Known Subclasses:

This is the controlling class for the signatures for the collection of entries associated with a specific directory. The actual directory association will be maintained by a subclass that is specific to the underlying storage method. This class provides a common set of methods for fetching and storing the individual bits of information that make up signature entry.
Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
get_entry(self, filename)
Fetch the specified entry attribute.
source code
 
set_entry(self, filename, obj)
Set the entry.
source code
 
do_not_set_entry(self, filename, obj) source code
 
store_info(self, filename, node) source code
 
do_not_store_info(self, filename, node) source code
 
merge(self) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)