Trees | Indices | Help |
|
---|
|
object --+ | dict --+ | SortedDict
|
|||
new empty dictionary |
|
||
|
|||
|
|||
None |
|
||
v, remove specified key and return the corresponding value |
|
||
(k, v), remove and return some (key, value) pair as a |
|
||
|
|||
None |
|
||
list of D's keys |
|
||
list of D's values |
|
||
list of D's (key, value) pairs, as 2-tuples |
|
||
an iterator over the keys of D |
|
||
an iterator over the values of D |
|
||
an iterator over the (key, value) items of D |
|
||
Inherited from Inherited from |
|
|||
_keys | |||
Inherited from |
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
|
del x[y]
|
x[i]=y
|
Remove all items from D.
|
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 Wed Jul 8 16:00:04 2009 | http://epydoc.sourceforge.net |