Package SCons :: Package compat :: Module _scons_optparse :: Class Values
[hide private]
[frames] | no frames]

Class Values

source code

Instance Methods [hide private]
 
__init__(self, defaults=None) source code
 
__str__(self) source code
 
__repr__(self) source code
 
__cmp__(self, other) source code
 
_update_careful(self, dict)
Update the option values from an arbitrary dictionary, but only use keys from dict that already have a corresponding attribute in self.
source code
 
_update_loose(self, dict)
Update the option values from an arbitrary dictionary, using all keys from the dictionary regardless of whether they have a corresponding attribute in self or not.
source code
 
_update(self, dict, mode) source code
 
read_module(self, modname, mode='careful') source code
 
read_file(self, filename, mode='careful') source code
 
ensure_value(self, attr, value) source code
Method Details [hide private]

_update_careful(self, dict)

source code 
Update the option values from an arbitrary dictionary, but only use keys from dict that already have a corresponding attribute in self. Any keys in dict without a corresponding attribute are silently ignored.