pdb.Pdb.run()

run(statement, globals=None, locals=None) runeval(expression, globals=None, locals=None) runcall(function, *args, **kwds) set_trace() See the documentation for the functions explained above.

locale.getpreferredencoding()

locale.getpreferredencoding(do_setlocale=True) Return the encoding used for text data, according to user preferences. User preferences are expressed differently on different systems, and might not be available programmatically on some systems, so this function only returns a guess. On some systems, it is necessary to invoke setlocale() to obtain the user preferences, so this function is not thread-safe. If invoking setlocale is not necessary or desired, do_setlocale should be set to False.

email.charset.Charset.output_charset

output_charset Some character sets must be converted before they can be used in email headers or bodies. If the input_charset is one of them, this attribute will contain the name of the character set output will be converted to. Otherwise, it will be None.

decimal.Context.copy_abs()

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

configparser.ConfigParser.defaults()

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

tracemalloc.is_tracing()

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

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.