asyncio.WriteTransport.get_write_buffer_size()

get_write_buffer_size() Return the current size of the output buffer used by the transport.

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.

logging.handlers.QueueHandler.enqueue()

enqueue(record) Enqueues the record on the queue using put_nowait(); you may want to override this if you want to use blocking behaviour, or a timeout, or a customized queue implementation.

collections.abc.AsyncIterable

class collections.abc.AsyncIterable ABC for classes that provide __aiter__ method. See also the definition of asynchronous iterable. New in version 3.5.

asyncio.async()

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

mailbox.MHMessage.set_sequences()

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