wx.lib.mixins.listctrl.ListCtrlAutoWidthMixin:
A mix-in class that automatically resizes the last column to take up
the remaining width of the wx.ListCtrl.
bmrblib.pystarlib.TagTable.TagTable:
In initializing the class a content has to be given!!! If not then
the class will make something up and it won't be pretty but it will
be following legal syntax.
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).
wx.lib.mixins.listctrl.TextEditMixin:
A mixin class that enables any text in any column of a multi-column
listctrl to be edited by clicking on the given row and column.
multi.misc.Verbosity:
A special singleton structure for changing the verbosity level on
the fly.
unreachable._CData:
XXX to be provided
_ctypes.Structure:
Structure base class
info.MemoryStatusEx:
Special object for obtaining hardware info in MS Windows.
_io._IOBase:
The abstract base class for all I/O classes, acting on streams of
bytes.
io.IOBase
io.BufferedIOBase
gzip.GzipFile:
The GzipFile class simulates most of the methods of a file object
with the exception of the readinto() and truncate() methods.
relax_io.GzipFixed:
Incredibly nasty hack for gzipped files support in Python 3.0, 3.1
and 3.2.
_io._BufferedIOBase:
Base class for buffered IO objects.
io.BufferedIOBase
gzip.GzipFile:
The GzipFile class simulates most of the methods of a file object
with the exception of the readinto() and truncate() methods.
relax_io.GzipFixed:
Incredibly nasty hack for gzipped files support in Python 3.0, 3.1
and 3.2.
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.