traceback.TracebackException.lineno

lineno For syntax errors - the line number where the error occurred.

telnetlib.Telnet.read_until()

Telnet.read_until(expected, timeout=None) Read until a given byte string, expected, is encountered or until timeout seconds have passed. When no match is found, return whatever is available instead, possibly empty bytes. Raise EOFError if the connection is closed and no cooked data is available.

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

asyncio.StreamWriter.get_extra_info()

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

subprocess.TimeoutExpired.stdout

stdout Alias for output, for symmetry with stderr.

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.