|
__init__(self,
binding_list=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
__setitem__(self,
variable,
binding)
A binding is consistent with the dict if its variable is not already
bound, OR if its variable is already bound to its argument. |
source code
|
|
|
__getitem__(self,
variable)
Return the expression to which 'variable' is bound |
source code
|
|
|
|
|
__add__(self,
other)
Returns:
BindingDict A new dict containing all the elements of
both parameters |
source code
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|