Package svndump :: Module common :: Class OrderedDict
[show private | hide private]
[frames | no frames]

Type OrderedDict

object --+    
         |    
      dict --+
             |
            OrderedDict


A dict which you can access in order through items() or popitem().

Supports all normal dict operations, but keep in mind that if you update() it from a regular (non-ordered) dict, the new items will not be in any order (but will follow all the old items). Updating from another OrderedDict will preserve the order of both dicts.
Method Summary
  __init__(self, t)
  __delitem__(self, key)
  __setitem__(self, key, value)
  clear(self)
  copy(self)
  items(self)
Return a list with the dict's items, in order.
  keys(self)
Returns the keys in order.
  popitem(self)
  update(self, other_dict)
    Inherited from dict
  __cmp__(x, y)
x.__cmp__(y) <==> cmp(x,y)
  __contains__(x, y)
x.__contains__(y) <==> y in x
  __eq__(x, y)
x.__eq__(y) <==> x==y
  __ge__(x, y)
x.__ge__(y) <==> x>=y
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __getitem__(x, y)
x.__getitem__(y) <==> x[y]
  __gt__(x, y)
x.__gt__(y) <==> x>y
  __hash__(x)
x.__hash__() <==> hash(x)
  __iter__(x)
x.__iter__() <==> iter(x)
  __le__(x, y)
x.__le__(y) <==> x<=y
  __len__(x)
x.__len__() <==> len(x)
  __lt__(x, y)
x.__lt__(y) <==> x<y
  __ne__(x, y)
x.__ne__(y) <==> x!=y
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __repr__(x)
x.__repr__() <==> repr(x)
  get(D, k, d)
D.get(k[,d]) -> D[k] if k in D, else d.
  has_key(D, k)
D.has_key(k) -> True if D has a key k, else False
  iteritems(D)
D.iteritems() -> an iterator over the (key, value) items of D
  iterkeys(D)
D.iterkeys() -> an iterator over the keys of D
  itervalues(D)
D.itervalues() -> an iterator over the values of D
  pop(D, k, d)
If key is not found, d is returned if given, otherwise KeyError is raised
  setdefault(D, k, d)
D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D
  values(D)
D.values() -> list of D's values
    Inherited from object
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __str__(x)
x.__str__() <==> str(x)
    Inherited from type
  fromkeys(dict, S, v)
v defaults to None.

Method Details

items(self)

Return a list with the dict's items, in order.
Overrides:
__builtin__.dict.items

keys(self)

Returns the keys in order.
Overrides:
__builtin__.dict.keys

Generated by Epydoc 2.1 on Mon Mar 14 01:16:35 2005 http://epydoc.sf.net