curses.savetty()

curses.savetty() Save the current state of the terminal modes in a buffer, usable by resetty().

curses.init_pair()

curses.init_pair(pair_number, fg, bg) Change the definition of a color-pair. It takes three arguments: the number of the color-pair to be changed, the foreground color number, and the background color number. The value of pair_number must be between 1 and COLOR_PAIRS - 1 (the 0 color pair is wired to white on black and cannot be changed). The value of fg and bg arguments must be between 0 and COLORS. If the color-pair was previously initialized, the screen is refreshed and all occurrences of

turtle.Screen

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

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.

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

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.

queue.Empty

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

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.

typing.ItemsView

class typing.ItemsView(MappingView, Generic[KT_co, VT_co]) A generic version of collections.abc.ItemsView.