tarfile.TarFile

class tarfile.TarFile Class for reading and writing tar archives. Do not use this class directly: use tarfile.open() instead. See TarFile Objects.

http.cookies.Morsel.set()

Morsel.set(key, value, coded_value) Set the key, value and coded_value attributes. Deprecated since version 3.5: The undocumented LegalChars parameter is ignored and will be removed in a future version.

queue.Full

exception queue.Full Exception raised when non-blocking put() (or put_nowait()) is called on a Queue object which is full.

asyncio.iscoroutine()

asyncio.iscoroutine(obj) Return True if obj is a coroutine object, which may be based on a generator or an async def coroutine.

xml.sax.handler.feature_string_interning

xml.sax.handler.feature_string_interning value: "http://xml.org/sax/features/string-interning" true: All element names, prefixes, attribute names, Namespace URIs, and local names are interned using the built-in intern function. false: Names are not necessarily interned, although they may be (default). access: (parsing) read-only; (not parsing) read/write

io.IOBase.fileno()

fileno() Return the underlying file descriptor (an integer) of the stream if it exists. An OSError is raised if the IO object does not use a file descriptor.

asyncio.start_unix_server()

coroutine asyncio.start_unix_server(client_connected_cb, path=None, *, loop=None, limit=None, **kwds) Start a UNIX Domain Socket server, with a callback for each client connected. See start_server() for information about return value and other details. This function is a coroutine. Availability: UNIX.

plistlib.dump()

plistlib.dump(value, fp, *, fmt=FMT_XML, sort_keys=True, skipkeys=False) Write value to a plist file. Fp should be a writable, binary file object. The fmt argument specifies the format of the plist file and can be one of the following values: FMT_XML: XML formatted plist file FMT_BINARY: Binary formatted plist file When sort_keys is true (the default) the keys for dictionaries will be written to the plist in sorted order, otherwise they will be written in the iteration order of the dicti

email.contentmanager.ContentManager.get_content()

get_content(msg, *args, **kw) Look up a handler function based on the mimetype of msg (see next paragraph), call it, passing through all arguments, and return the result of the call. The expectation is that the handler will extract the payload from msg and return an object that encodes information about the extracted data. To find the handler, look for the following keys in the registry, stopping with the first one found: the string representing the full MIME type (maintype/subtype) the stri

bisect.bisect()

bisect.bisect(a, x, lo=0, hi=len(a)) Similar to bisect_left(), but returns an insertion point which comes after (to the right of) any existing entries of x in a. The returned insertion point i partitions the array a into two halves so that all(val <= x for val in a[lo:i]) for the left side and all(val > x for val in a[i:hi]) for the right side.