distutils.ccompiler.CCompiler:
Abstract base class to define the interface that must be
implemented by real compiler classes.
distutils.bcppcompiler.BCPPCompiler:
Concrete class that implements an interface to the Borland C/C++
compiler, as defined by the CCompiler abstract class.
distutils.msvccompiler.MSVCCompiler:
Concrete class that implements an interface to Microsoft Visual
C++, as defined by the CCompiler abstract class.
codeop.CommandCompiler:
Instances of this class have __call__ methods identical in
signature to compile_command; the difference is that if the
instance compiles program text containing a __future__ statement,
the instance 'remembers' and compiles all subsequent program texts
with the statement in force.
codeop.Compile:
Instances of this class behave much like the built-in compile
function, but if one is used to compile text containing a future
statement, it "remembers" and compiles all subsequent
program texts with the statement in force.
pydoc.TextDoc:
Formatter class for text documentation.
doctest.DocTest:
A collection of doctest examples that should be run in a single
namespace.
doctest.DocTestFinder:
A class used to extract the DocTests that are relevant to a given
object, from its docstring and the docstrings of its contained
objects.
distutils.extension.Extension:
Just a collection of attributes that describes an extension
module and everything needed to build it (hopefully in a portable
way, but there are hooks that let you be as unportable as you need).
distutils.fancy_getopt.FancyGetopt:
Wrapper around the standard 'getopt()' module that provides some
handy extra functionality:
* short and long options are tied together
* options have help strings, and help text can be assembled
from them
* options set attributes of a passed-in object
* boolean options can have "negative aliases" -- eg.
logging.handlers.RotatingFileHandler:
Handler for logging to a set of files, which switches from one file
to the next when the current file reaches a certain size.
logging.Logger:
Instances of the Logger class represent a single logging channel.
logging.RootLogger:
A root logger is not that different to any other logger, except
that it must have a logging level and there is only one instance of
it in the hierarchy.
Tix.HList:
HList - Hierarchy display widget can be used to display any data
that have a hierarchical structure, for example, file system
directory trees.
Tix.ListNoteBook:
A ListNoteBook widget is very similar to the TixNoteBook widget: it
can be used to display many windows in a limited space using a
notebook metaphor.
Tix.Meter:
The Meter widget can be used to show the progress of a background
job which may take a long time to execute.
Tix.HList:
HList - Hierarchy display widget can be used to display any data
that have a hierarchical structure, for example, file system
directory trees.
Tix.ListNoteBook:
A ListNoteBook widget is very similar to the TixNoteBook widget: it
can be used to display many windows in a limited space using a
notebook metaphor.
Tix.Meter:
The Meter widget can be used to show the progress of a background
job which may take a long time to execute.
logging.Manager:
There is [under normal circumstances] just one Manager instance,
which holds the hierarchy of loggers.
xmlrpclib.Marshaller:
Generate an XML-RPC params chunk from a Python data structure.
rfc822.Message:
Represents a single RFC 2822-compliant message.
mimetools.Message:
A derived class of rfc822.Message that knows about MIME headers and
contains some hooks for decoding encoded and multipart messages.
Tix.HList:
HList - Hierarchy display widget can be used to display any data
that have a hierarchical structure, for example, file system
directory trees.
Tix.ListNoteBook:
A ListNoteBook widget is very similar to the TixNoteBook widget: it
can be used to display many windows in a limited space using a
notebook metaphor.
Tix.Meter:
The Meter widget can be used to show the progress of a background
job which may take a long time to execute.
formatter.DumbWriter:
Simple writer class which writes output on the file object passed
in as the file parameter or, if file is omitted, on standard
output.
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).
Tix.HList:
HList - Hierarchy display widget can be used to display any data
that have a hierarchical structure, for example, file system
directory trees.
Tix.ListNoteBook:
A ListNoteBook widget is very similar to the TixNoteBook widget: it
can be used to display many windows in a limited space using a
notebook metaphor.
Tix.Meter:
The Meter widget can be used to show the progress of a background
job which may take a long time to execute.
Tix.HList:
HList - Hierarchy display widget can be used to display any data
that have a hierarchical structure, for example, file system
directory trees.
Tix.ListNoteBook:
A ListNoteBook widget is very similar to the TixNoteBook widget: it
can be used to display many windows in a limited space using a
notebook metaphor.
Tix.Meter:
The Meter widget can be used to show the progress of a background
job which may take a long time to execute.
difflib.SequenceMatcher:
SequenceMatcher is a flexible class for comparing pairs of sequences of
any type, so long as the sequence elements are hashable.
distutils.text_file.TextFile:
Provides a file-like object that takes care of all the things you
commonly want to do when processing a text file that has some
line-by-line syntax: strip comments (as long as "#" is your
comment character), skip blank lines, join adjacent lines by
escaping the newline (ie.
xml.sax.xmlreader.IncrementalParser:
This interface adds three extra methods to the XMLReader interface
that allow XML parsers to support incremental parsing.
tempfile._RandomNameSequence:
An instance of _RandomNameSequence generates an endless sequence of
unpredictable strings which can safely be incorporated into file
names.
distutils.errors.DistutilsClassError:
Some command class (or possibly distribution class, if anyone feels
a need to subclass Distribution) is found not to be holding up its
end of the bargain, ie.
distutils.errors.DistutilsModuleError:
Unable to load an expected module, or to find an expected class
within some module (in particular, command modules and classes).
distutils.errors.DistutilsOptionError:
Syntactic/semantic errors in command options, such as use of
mutually conflicting options, or inconsistent options,
badly-spelled values, etc.
ctypes.CDLL:
An instance of this class represents a loaded dll/shared library,
exporting functions using the standard C calling convention (named
'cdecl' on Windows).
ctypes.PyDLL:
This class represents the Python library itself.
calendar.LocaleHTMLCalendar:
This class can be passed a locale name in the constructor and will
return month and weekday names in the specified locale.
calendar.TextCalendar:
Subclass of Calendar that outputs a calendar as a simple plain text
similar to the UNIX program cal.
calendar.LocaleTextCalendar:
This class can be passed a locale name in the constructor and will
return month and weekday names in the specified locale.
codecs.BufferedIncrementalDecoder:
This subclass of IncrementalDecoder can be used as the baseclass
for an incremental decoder if the decoder must be able to handle
incomplete byte sequences.
codecs.BufferedIncrementalEncoder:
This subclass of IncrementalEncoder can be used as the baseclass
for an incremental encoder if the encoder must keep some of the
output in a buffer between calls to encode().
_random.Random:
Random() -> create a random number generator with its own
internal state.
random.Random:
Random number generator base class used by bound module functions.
random.SystemRandom:
Alternate random number generator using sources provided
by the operating system (such as /dev/urandom on Unix or
CryptGenRandom on Windows).