SCons :: Node :: NodeInfoBase :: Class NodeInfoBase
[hide private]
[frames] | no frames]

Class NodeInfoBase

source code

object --+
         |
        NodeInfoBase
Known Subclasses:

The generic base class for signature information for a Node.

Node subclasses should subclass NodeInfoBase to provide their own logic for dealing with their own Node-specific signature information.

Instance Methods [hide private]
 
__getstate__(self)
Return all fields that shall be pickled. Walk the slots in the class hierarchy and add those to the state dictionary. If a '__dict__' slot is available, copy all entries to the dictionary. Also include the version id, which is fixed for all instances of a class.
source code
 
__setstate__(self, state)
Restore the attributes from a pickled state. The version is discarded.
source code
 
convert(self, node, val) source code
 
format(self, field_list=None, names=0) source code
 
merge(self, other)
Merge the fields of another object into this object. Already existing information is overwritten by the other instance's data. WARNING: If a '__dict__' slot is added, it should be updated instead of replaced.
source code
 
update(self, node) source code

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

Class Variables [hide private]
  current_version_id = 2
Properties [hide private]

Inherited from object: __class__