Compat. utilities - kombu.utils.compat

kombu.utils.compat

Helps compatibility with older Python versions.

copyright:
  1. 2009 - 2012 by Ask Solem.
license:

BSD, see LICENSE for more details.

class kombu.utils.compat.CompatOrderedDict(*args, **kwds)

Dictionary that remembers insertion order

clear() → None. Remove all items from od.
copy() → a shallow copy of od
classmethod fromkeys(S[, v]) → New ordered dictionary with keys from S

and values equal to v (which defaults to None).

items()
iteritems()
iterkeys()
itervalues()
keys()
pop(key, default=<object object at 0x2dca5a0>)
popitem() -> (k, v)

Return and remove a (key, value) pair. Pairs are returned in LIFO order if last is true or FIFO order if false.

setdefault(key, default=None)
update(other=(), **kwds)
values()
class kombu.utils.compat.LifoQueue(maxsize=0)

Table Of Contents

Previous topic

Rate limiting - kombu.utils.limits

Next topic

Debugging - kombu.utils.debug

This Page