inspect.getargspec()

inspect.getargspec(func) Get the names and default values of a Python function’s arguments. A named tuple ArgSpec(args, varargs, keywords, defaults) is returned. args is a list of the argument names. varargs and keywords are the names of the * and ** arguments or None. defaults is a tuple of default argument values or None if there are no default arguments; if this tuple has n elements, they correspond to the last n elements listed in args. Deprecated since version 3.0: Use signature() and

decimal.Decimal.to_integral_exact()

to_integral_exact(rounding=None, context=None) Round to the nearest integer, signaling Inexact or Rounded as appropriate if rounding occurs. The rounding mode is determined by the rounding parameter if given, else by the given context. If neither parameter is given then the rounding mode of the current context is used.

email.headerregistry.ContentTypeHeader.maintype

maintype

curses.window.idcok()

window.idcok(flag) If flag is False, curses no longer considers using the hardware insert/delete character feature of the terminal; if flag is True, use of character insertion and deletion is enabled. When curses is first initialized, use of character insert/delete is enabled by default.

codeop.Compile

class codeop.Compile Instances of this class have __call__() methods identical in signature to the built-in function compile(), but with the difference that if the instance compiles program text containing a __future__ statement, the instance ‘remembers’ and compiles all subsequent program texts with the statement in force.

shlex.shlex.escape

shlex.escape Characters that will be considered as escape. This will be only used in POSIX mode, and includes just '\' by default.

mailbox.MH.get_sequences()

get_sequences() Return a dictionary of sequence names mapped to key lists. If there are no sequences, the empty dictionary is returned.

cmd.Cmd.doc_header

Cmd.doc_header The header to issue if the help output has a section for documented commands.

str.center()

str.center(width[, fillchar]) Return centered in a string of length width. Padding is done using the specified fillchar (default is an ASCII space). The original string is returned if width is less than or equal to len(s).

wave.Wave_read.getcomptype()

Wave_read.getcomptype() Returns compression type ('NONE' is the only supported type).