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 help(type(x)) 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 present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and 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 Tue Aug 13 06:17:01 2013 | http://epydoc.sourceforge.net |