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).
grizzled.config.NoVariableError:
Thrown when a configuration file attempts to substitute a nonexistent
variable, and the Configuration object was instantiated with
strict_substitution set to True.
grizzled.net.ftp.parse.FTPListDataParser:
An FTPListDataParser object can be used to parse one or more lines
that were retrieved by an FTP LIST command that was sent to a remote
server.
grizzled.net.ftp.parse.FTPMlstDataParser:
An FTPMlstDataParser object can be used to parse one or more lines
that were retrieved by an FTP MLST or MLSD command that was sent
to a remote server.
grizzled.proxy.Forwarder:
The grizzled.forwarder.Forwarder class is intended to be used as
a mixin, to make it easier for classes to forward calls to another
class.
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.
grizzled.collections.dict.LRUDict:
LRUDict is a dictionary of a fixed maximum size that enforces a least
recently used discard policy.