Trees | Indices | Help |
---|
|
object --+ | dict --+ | WatchedDict
|
|||
|
|||
new empty dictionary |
|
||
|
|||
|
|||
v, remove specified key and return the corresponding value |
|
||
(k, v), remove and return some (key, value) pair as a |
|
||
|
|||
None |
|
||
|
|||
Inherited from Inherited from |
|
|||
Inherited from |
|
del x[y]
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
x[i]=y
|
If key is not found, d is returned if given, otherwise KeyError is raised
|
2-tuple; but raise KeyError if D is empty
|
Update D from E and F: for k in E: D[k] = E[k] (if E has keys else: for (k, v) in E: D[k] = v) then: for k in F: D[k] = F[k]
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Apr 11 07:40:23 2008 | http://epydoc.sourceforge.net |