http.client.LineTooLong

exception http.client.LineTooLong A subclass of HTTPException. Raised if an excessively long line is received in the HTTP protocol from the server.

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.

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

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.

aifc.aifc.getcomptype()

aifc.getcomptype() Return a bytes array of length 4 describing the type of compression used in the audio file. For AIFF files, the returned value is b'NONE'.

operator.__isub__()

operator.__isub__(a, b) a = isub(a, b) is equivalent to a -= b.

cmath.acosh()

cmath.acosh(x) Return the inverse hyperbolic cosine of x. There is one branch cut, extending left from 1 along the real axis to -∞, continuous from above.