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.

re.error.msg

msg The unformatted error message.

os.stat_result.st_rdev

st_rdev Type of device if an inode device.

math.sinh()

math.sinh(x) Return the hyperbolic sine of x.