cmd.Cmd

class cmd.Cmd(completekey='tab', stdin=None, stdout=None) A Cmd instance or subclass instance is a line-oriented interpreter framework. There is no good reason to instantiate Cmd itself; rather, it’s useful as a superclass of an interpreter class you define yourself in order to inherit Cmd‘s methods and encapsulate action methods. The optional argument completekey is the readline name of a completion key; it defaults to Tab. If completekey is not None and readline is available, command compl

math.log1p()

math.log1p(x) Return the natural logarithm of 1+x (base e). The result is calculated in a way which is accurate for x near zero.

netrc.netrc.macros

netrc.macros Dictionary mapping macro names to string lists.

poplib.POP3.dele()

POP3.dele(which) Flag message number which for deletion. On most servers deletions are not actually performed until QUIT (the major exception is Eudora QPOP, which deliberately violates the RFCs by doing pending deletes on any disconnect).

decimal.DivisionByZero

class decimal.DivisionByZero Signals the division of a non-infinite number by zero. Can occur with division, modulo division, or when raising a number to a negative power. If this signal is not trapped, returns Infinity or -Infinity with the sign determined by the inputs to the calculation.

ssl.PROTOCOL_TLSv1

ssl.PROTOCOL_TLSv1 Selects TLS version 1.0 as the channel encryption protocol.

weakref.WeakValueDictionary.valuerefs()

WeakValueDictionary.valuerefs() Return an iterable of the weak references to the values.

tarfile.TarInfo.isdir()

TarInfo.isdir() Return True if it is a directory.

ftplib.FTP.nlst()

FTP.nlst(argument[, ...]) Return a list of file names as returned by the NLST command. The optional argument is a directory to list (default is the current server directory). Multiple arguments can be used to pass non-standard options to the NLST command. Note If your server supports the command, mlsd() offers a better API.

decimal.Context.logb()

logb(x) Returns the exponent of the magnitude of the operand’s MSD.