Home | History | Annotate | Download | only in Lib

Lines Matching refs:od

72         'od.__setitem__(i, y) <==> od[i]=y'
82 'od.__delitem__(y) <==> del od[y]'
91 'od.__iter__() <==> iter(od)'
100 'od.__reversed__() <==> reversed(od)'
109 'od.clear() -> None. Remove all items from od.'
118 'od.keys() -> list of keys in od'
122 'od.values() -> list of values in od'
126 'od.items() -> list of (key, value) pairs in od'
130 'od.iterkeys() -> an iterator over the keys in od'
134 'od.itervalues -> an iterator over the values in od'
139 'od.iteritems -> an iterator over the (key, value) pairs in od'
150 '''od.pop(k[,d]) -> v, remove specified key and return the corresponding
164 'od.setdefault(k[,d]) -> od.get(k,d), also set od[k]=d if k not in od'
171 '''od.popitem() -> (k, v), return and remove a (key, value) pair.
182 'od.__repr__() <==> repr(od)'
205 'od.copy() -> a shallow copy of od'
210 '''OD.fromkeys(S[, v]) -> New ordered dictionary with keys from S.
220 '''od.__eq__(y) <==> od==y. Comparison to another OD is order-sensitive
229 'od.__ne__(y) <==> od!=y'
235 "od.viewkeys() -> a set-like object providing a view on od's keys"
239 "od.viewvalues() -> an object providing a view on od's values"
243 "od.viewitems() -> a set-like object providing a view on od's items"