genshi.template.text.OldTextTemplate:
Legacy implementation of the old syntax text-based templates. This class
is provided in a transition phase for backwards compatibility. New code
should use the NewTextTemplate class and the improved syntax it provides.
dict:
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
(key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
d = {}
for k, v in iterable:
d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list.
genshi.util.LRUCache:
A dictionary-like object that stores only a certain number of items, and
discards its least recently used item when full.