| 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 |
|||
|
|||
|
Inherited from |
|||
|
|||
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
x[i]=y
|
del x[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 dict/iterable E and F. If E has a .keys() method, does: for k in E: D[k] = E[k] If E lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
|
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Fri Sep 24 12:49:58 2010 | http://epydoc.sourceforge.net |