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.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.

cmd.Cmd.cmdqueue

Cmd.cmdqueue A list of queued input lines. The cmdqueue list is checked in cmdloop() when new input is needed; if it is nonempty, its elements will be processed in order, as if entered at the prompt.

curses.ascii.isupper()

curses.ascii.isupper(c) Checks for an ASCII uppercase letter.

decimal.Context.scaleb()

scaleb(x, y) Returns the first operand after adding the second value its exp.

curses.ascii.ispunct()

curses.ascii.ispunct(c) Checks for any printable ASCII character which is not a space or an alphanumeric character.