decimal.Context.copy_abs()

copy_abs(x) Returns a copy of x with the sign set to 0.

tracemalloc.is_tracing()

tracemalloc.is_tracing() True if the tracemalloc module is tracing Python memory allocations, False otherwise. See also start() and stop() functions.

configparser.ConfigParser.defaults()

defaults() Return a dictionary containing the instance-wide defaults.

mailbox.MaildirMessage.set_date()

set_date(date) Set the delivery date of the message to date, a floating-point number representing seconds since the epoch.

dis.Instruction.opcode

opcode numeric code for operation, corresponding to the opcode values listed below and the bytecode values in the Opcode collections.

multiprocessing.managers.SyncManager.Queue()

Queue([maxsize]) Create a shared queue.Queue object and return a proxy for it.

dis.hascompare

dis.hascompare Sequence of bytecodes of Boolean operations.

curses.window.insch()

window.insch(ch[, attr]) window.insch(y, x, ch[, attr]) Paint character ch at (y, x) with attributes attr, moving the line from position x right by one character.

email.message.Message.get_filename()

get_filename(failobj=None) Return the value of the filename parameter of the Content-Disposition header of the message. If the header does not have a filename parameter, this method falls back to looking for the name parameter on the Content-Type header. If neither is found, or the header is missing, then failobj is returned. The returned string will always be unquoted as per email.utils.unquote().

types.MappingProxyType.keys()

keys() Return a new view of the underlying mapping’s keys.