UnicodeError.encoding

encoding The name of the encoding that raised the error.

queue.Queue.empty()

Queue.empty() Return True if the queue is empty, False otherwise. If empty() returns True it doesn’t guarantee that a subsequent call to put() will not block. Similarly, if empty() returns False it doesn’t guarantee that a subsequent call to get() will not block.

dis.Bytecode.info()

info() Return a formatted multi-line string with detailed information about the code object, like code_info().

aifc.aifc.aiff()

aifc.aiff() Create an AIFF file. The default is that an AIFF-C file is created, unless the name of the file ends in '.aiff' in which case the default is an AIFF file.

queue.Empty

exception queue.Empty Exception raised when non-blocking get() (or get_nowait()) is called on a Queue object which is empty.

ssl.SSLSocket.server_side

SSLSocket.server_side A boolean which is True for server-side sockets and False for client-side sockets. New in version 3.2.

itertools.accumulate()

itertools.accumulate(iterable[, func]) Make an iterator that returns accumulated sums, or accumulated results of other binary functions (specified via the optional func argument). If func is supplied, it should be a function of two arguments. Elements of the input iterable may be any type that can be accepted as arguments to func. (For example, with the default operation of addition, elements may be any addable type including Decimal or Fraction.) If the input iterable is empty, the output i

sys.getdefaultencoding()

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.

bdb.Bdb.get_all_breaks()

get_all_breaks() Return all breakpoints that are set.

turtle.Screen

class turtle.Screen Subclass of TurtleScreen, with four methods added.