enum.Enum

class enum.Enum Base class for creating enumerated constants. See section Functional API for an alternate construction syntax.

threading.Barrier.abort()

abort() Put the barrier into a broken state. This causes any active or future calls to wait() to fail with the BrokenBarrierError. Use this for example if one of the needs to abort, to avoid deadlocking the application. It may be preferable to simply create the barrier with a sensible timeout value to automatically guard against one of the threads going awry.

xml.etree.ElementTree.TreeBuilder.data()

data(data) Adds text to the current element. data is a string. This should be either a bytestring, or a Unicode string.

decimal.Context.logical_invert()

logical_invert(x) Invert all the digits in x.

io.BufferedIOBase.read1()

read1(size=-1) Read and return up to size bytes, with at most one call to the underlying raw stream’s read() (or readinto()) method. This can be useful if you are implementing your own buffering on top of a BufferedIOBase object.

tracemalloc.get_traced_memory()

tracemalloc.get_traced_memory() Get the current size and peak size of memory blocks traced by the tracemalloc module as a tuple: (current: int, peak: int).

xml.parsers.expat.xmlparser.ErrorCode

xmlparser.ErrorCode Numeric code specifying the problem. This value can be passed to the ErrorString() function, or compared to one of the constants defined in the errors object.

msilib.View.GetColumnInfo()

View.GetColumnInfo(kind) Return a record describing the columns of the view, through calling MsiViewGetColumnInfo(). kind can be either MSICOLINFO_NAMES or MSICOLINFO_TYPES.

asyncio.get_event_loop_policy()

asyncio.get_event_loop_policy() Get the current event loop policy.

readline.replace_history_item()

readline.replace_history_item(pos, line) Replace history item specified by its position with line. The position is zero-based. This calls replace_history_entry() in the underlying library.