|
|
|
|
|
|
new empty dictionary
|
__init__(self,
*args,
**kwds)
Initialize an ordered dictionary. |
|
|
|
|
|
|
|
|
|
|
__reduce__(self)
Return state information for pickling |
|
|
|
|
|
|
|
__reversed__(od)
reversed(od) |
|
|
|
|
|
|
None
|
clear(od)
Remove all items from od. |
|
|
|
a shallow copy of od
|
|
|
list of (key, value) pairs in od
|
|
|
an iterator over the (key, value) items of D
|
iteritems(self)
od.iteritems -> an iterator over the (key, value) pairs in od |
|
|
|
an iterator over the keys in od
|
|
|
an iterator over the values of D
|
itervalues(self)
od.itervalues -> an iterator over the values in od |
|
|
|
list of keys in od
|
|
|
v, remove specified key and return the corresponding
|
|
|
(k, v), return and remove a (key, value) pair
|
popitem(od)
Pairs are returned in LIFO order if last is true or FIFO order if
false. |
|
|
|
od.get(k,d), also set od[k]=d if k not in od
|
|
|
None
|
update(*args,
**kwds)
Update D from dict/iterable E and F. |
|
|
|
list of values in od
|
|
|
a set-like object providing a view on od's items
|
|
|
a set-like object providing a view on od's keys
|
|
|
an object providing a view on od's values
|
|
|
Inherited from dict:
__cmp__,
__contains__,
__ge__,
__getattribute__,
__getitem__,
__gt__,
__le__,
__len__,
__lt__,
__new__,
__sizeof__,
get,
has_key
Inherited from object:
__delattr__,
__format__,
__reduce_ex__,
__setattr__,
__str__,
__subclasshook__
|