Bases: collections.OrderedDict
This dictionary stores items case sensitive, but compare them case
INsensitive.
-
clear() → None. Remove all items from od.[source]
-
get(k, d=None)[source]
Return the value for key if key is in the dictionary, else default.
-
has_key(key)[source]
-
iteritems(*args, **kwargs)[source]
-
iterkeys(*args, **kwargs)[source]
-
itervalues(*args, **kwargs)[source]
-
keys() → a set-like object providing a view on D's keys[source]
-
items() → a set-like object providing a view on D's items[source]
-
values() → an object providing a view on D's values[source]
-
copy() → a shallow copy of od[source]