mailbox.Maildir.update()

update(arg) Warning These methods generate unique file names based upon the current process ID. When using multiple threads, undetected name clashes may occur and cause corruption of the mailbox unless threads are coordinated to avoid using these methods to manipulate the same mailbox simultaneously.

asyncio.get_event_loop_policy()

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

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.

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

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.

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.

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.

enum.Enum

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