mailbox.MH

class mailbox.MH(path, factory=None, create=True) A subclass of Mailbox for mailboxes in MH format. Parameter factory is a callable object that accepts a file-like message representation (which behaves as if opened in binary mode) and returns a custom representation. If factory is None, MHMessage is used as the default message representation. If create is True, the mailbox is created if it does not exist. MH is a directory-based mailbox format invented for the MH Message Handling System, a m

dis.Instruction.opname

opname human readable name for operation

poplib.POP3.stat()

POP3.stat() Get mailbox status. The result is a tuple of 2 integers: (message count, mailbox size).

curses.panel.Panel.userptr()

Panel.userptr() Returns the user pointer for the panel. This might be any Python object.

binhex.Error

exception binhex.Error Exception raised when something can’t be encoded using the binhex format (for example, a filename is too long to fit in the filename field), or when input is not properly encoded binhex data.

msilib.Dialog.control()

control(name, type, x, y, width, height, attributes, property, text, control_next, help) Return a new Control object. An entry in the Control table is made with the specified parameters. This is a generic method; for specific types, specialized methods are provided.

pickle.Pickler

class pickle.Pickler(file, protocol=None, *, fix_imports=True) This takes a binary file for writing a pickle data stream. The optional protocol argument, an integer, tells the pickler to use the given protocol; supported protocols are 0 to HIGHEST_PROTOCOL. If not specified, the default is DEFAULT_PROTOCOL. If a negative number is specified, HIGHEST_PROTOCOL is selected. The file argument must have a write() method that accepts a single bytes argument. It can thus be an on-disk file opened f

pydoc

Source code: Lib/pydoc.py The pydoc module automatically generates documentation from Python modules. The documentation can be presented as pages of text on the console, served to a Web browser, or saved to HTML files. For modules, classes, functions and methods, the displayed documentation is derived from the docstring (i.e. the __doc__ attribute) of the object, and recursively of its documentable members. If there is no docstring, pydoc tries to obtain a description from the block of comment

zipfile.ZipInfo.CRC

ZipInfo.CRC CRC-32 of the uncompressed file.

logging.handlers.MemoryHandler.shouldFlush()

shouldFlush(record) Checks for buffer full or a record at the flushLevel or higher.