poplib.POP3.pass_()

POP3.pass_(password) Send password, response includes message count and mailbox size. Note: the mailbox on the server is locked until quit() is called.

decimal.Decimal.adjusted()

adjusted() Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains: Decimal('321e+5').adjusted() returns seven. Used for determining the position of the most significant digit with respect to the decimal point.

imaplib.IMAP4.append()

IMAP4.append(mailbox, flags, date_time, message) Append message to named mailbox.

zipfile.ZipInfo.header_offset

ZipInfo.header_offset Byte offset to the file header.

tarfile.ReadError

exception tarfile.ReadError Is raised when a tar archive is opened, that either cannot be handled by the tarfile module or is somehow invalid.

json.dump()

json.dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, sort_keys=False, **kw) Serialize obj as a JSON formatted stream to fp (a .write()-supporting file-like object) using this conversion table. If skipkeys is true (default: False), then dict keys that are not of a basic type (str, int, float, bool, None) will be skipped instead of raising a TypeError. The json module always produces str objects, not by

copyreg.constructor()

copyreg.constructor(object) Declares object to be a valid constructor. If object is not callable (and hence not valid as a constructor), raises TypeError.

urllib.request.CacheFTPHandler

class urllib.request.CacheFTPHandler Open FTP URLs, keeping a cache of open FTP connections to minimize delays.

email.message.Message.items()

items() Return a list of 2-tuples containing all the message’s field headers and values.

msilib.Dialog.radiogroup()

radiogroup(name, x, y, width, height, attributes, property, text, next_control) Add and return a RadioButtonGroup control.