curses.window.attron()

window.attron(attr) Add attribute attr from the “background” set applied to all writes to the current window.

http.server.BaseHTTPRequestHandler.sys_version

sys_version Contains the Python system version, in a form usable by the version_string method and the server_version class variable. For example, 'Python/1.4'.

datetime.datetime.year

datetime.year Between MINYEAR and MAXYEAR inclusive.

base64.standard_b64encode()

base64.standard_b64encode(s) Encode bytes-like object s using the standard Base64 alphabet and return the encoded bytes.

uuid.uuid3()

uuid.uuid3(namespace, name) Generate a UUID based on the MD5 hash of a namespace identifier (which is a UUID) and a name (which is a string).

keyword.kwlist

keyword.kwlist Sequence containing all the keywords defined for the interpreter. If any keywords are defined to only be active when particular __future__ statements are in effect, these will be included as well.

curses.window.insstr()

window.insstr(str[, attr]) window.insstr(y, x, str[, attr]) Insert a character string (as many characters as will fit on the line) before the character under the cursor. All characters to the right of the cursor are shifted right, with the rightmost characters on the line being lost. The cursor position does not change (after moving to y, x, if specified).

UnicodeTranslateError

exception UnicodeTranslateError Raised when a Unicode-related error occurs during translating. It is a subclass of UnicodeError.

tracemalloc.Frame

class tracemalloc.Frame Frame of a traceback. The Traceback class is a sequence of Frame instances. filename Filename (str). lineno Line number (int).

threading.Event.set()

set() Set the internal flag to true. All threads waiting for it to become true are awakened. Threads that call wait() once the flag is true will not block at all.