This is a dictionary-like class used by an Environment to hold
the Builders. We need to do this because every time someone changes
the Builders in the Environment's BUILDERS dictionary, we must
update the Environment's attributes.
| Method Summary |
| |
__init__(self,
dict,
env)
|
| |
__delitem__(self,
item)
|
| |
__semi_deepcopy__(self)
|
| |
__setitem__(self,
item,
val)
|
| |
update(self,
dict)
|
| Inherited from UserDict |
| |
__cmp__(self,
dict)
|
| |
__contains__(self,
key)
|
| |
__getitem__(self,
key)
|
| |
__len__(self)
|
| |
__repr__(self)
|
| |
clear(self)
|
| |
copy(self)
|
| |
fromkeys(cls,
iterable,
value)
(Class method)
|
| |
get(self,
key,
failobj)
|
| |
has_key(self,
key)
|
| |
items(self)
|
| |
iteritems(self)
|
| |
iterkeys(self)
|
| |
itervalues(self)
|
| |
keys(self)
|
| |
pop(self,
key,
*args)
|
| |
popitem(self)
|
| |
setdefault(self,
key,
failobj)
|
| |
values(self)
|