asyncore.dispatcher.accept()

accept() Accept a connection. The socket must be bound to an address and listening for connections. The return value can be either None or a pair (conn, address) where conn is a new socket object usable to send and receive data on the connection, and address is the address bound to the socket on the other end of the connection. When None is returned it means the connection didn’t take place, in which case the server should just ignore this event and keep listening for further incoming connec

subprocess.TimeoutExpired.stdout

stdout Alias for output, for symmetry with stderr.

asyncio.StreamWriter.get_extra_info()

get_extra_info(name, default=None) Return optional transport information: see BaseTransport.get_extra_info().

pathlib.Path.rmdir()

Path.rmdir() Remove this directory. The directory must be empty.

tkinter.ttk.Treeview.prev()

prev(item) Returns the identifier of item‘s previous sibling, or ‘’ if item is the first child of its parent.

base64.b16decode()

base64.b16decode(s, casefold=False) Decode the Base16 encoded bytes-like object or ASCII string s and return the decoded bytes. Optional casefold is a flag specifying whether a lowercase alphabet is acceptable as input. For security purposes, the default is False. A binascii.Error is raised if s is incorrectly padded or if there are non-alphabet characters present in the input.

xml.dom.ProcessingInstruction.target

ProcessingInstruction.target The content of the processing instruction up to the first whitespace character. This is a read-only attribute.

unittest.removeResult()

unittest.removeResult(result) Remove a registered result. Once a result has been removed then stop() will no longer be called on that result object in response to a control-c.

imaplib.IMAP4.utf8_enabled

IMAP4.utf8_enabled Boolean value that is normally False, but is set to True if an enable() command is successfully issued for the UTF8=ACCEPT capability. New in version 3.5.

turtle.tilt()

turtle.tilt(angle) Parameters: angle – a number Rotate the turtleshape by angle from its current tilt-angle, but do not change the turtle’s heading (direction of movement). >>> turtle.reset() >>> turtle.shape("circle") >>> turtle.shapesize(5,2) >>> turtle.tilt(30) >>> turtle.fd(50) >>> turtle.tilt(30) >>> turtle.fd(50)