optparse.OptionParser:
Class attributes:
standard_option_list : [Option]
list of standard options that will be accepted by all instances
of this parser class (intended to be overridden by subclasses).
weakref.WeakValueDictionary:
Mapping class that references values weakly.
translate.misc.lru.LRUCachingDict:
Caching dictionary like object that discards the least recently
used objects when number of cached items exceeds maxsize.
translate.filters.checks.SeriousFilterFailure:
This exception signals that a Filter didn't pass, and the bad
translation might break an application (so the string will be
marked fuzzy)
translate.storage.statsdb.StatsCache:
An object instantiated as a singleton for each statsfile that
provides access to the database cache from a pool of StatsCache
objects.
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.