importlib.abc.SourceLoader.get_source()

get_source(fullname) Concrete implementation of InspectLoader.get_source().

mailbox.MHMessage.set_sequences()

set_sequences(sequences) Set the list of sequences that include this message.

asyncio.async()

asyncio.async(coro_or_future, *, loop=None) A deprecated alias to ensure_future(). Deprecated since version 3.4.4.

stringprep.in_table_b1()

stringprep.in_table_b1(code) Determine whether code is in tableB.1 (Commonly mapped to nothing).

gettext.GNUTranslations.lngettext()

GNUTranslations.lngettext(singular, plural, n) Equivalent to gettext(), but the translation is returned as a bytestring encoded in the selected output charset, or in the preferred system encoding if no encoding was explicitly set with set_output_charset().

curses.ascii.iscntrl()

curses.ascii.iscntrl(c) Checks for an ASCII control character (in the range 0x00 to 0x1f or 0x7f).

ipaddress.IPv6Interface.network

network

wsgiref.handlers.BaseHandler.wsgi_run_once

wsgi_run_once The value to be used for the wsgi.run_once environment variable. It defaults to false in BaseHandler, but CGIHandler sets it to true by default.

atexit.unregister()

atexit.unregister(func) Remove func from the list of functions to be run at interpreter shutdown. After calling unregister(), func is guaranteed not to be called when the interpreter shuts down, even if it was registered more than once. unregister() silently does nothing if func was not previously registered.

asyncio.WriteTransport.get_write_buffer_limits()

get_write_buffer_limits() Get the high- and low-water limits for write flow control. Return a tuple (low, high) where low and high are positive number of bytes. Use set_write_buffer_limits() to set the limits. New in version 3.4.2.