asyncio.IncompleteReadError.partial

partial Read bytes string before the end of stream was reached (bytes).

heapq.heappushpop()

heapq.heappushpop(heap, item) Push item on the heap, then pop and return the smallest item from the heap. The combined action runs more efficiently than heappush() followed by a separate call to heappop().

chunk.Chunk.seek()

seek(pos, whence=0) Set the chunk’s current position. The whence argument is optional and defaults to 0 (absolute file positioning); other values are 1 (seek relative to the current position) and 2 (seek relative to the file’s end). There is no return value. If the underlying file does not allow seek, only forward seeks are allowed.

asyncore.dispatcher.bind()

bind(address) Bind the socket to address. The socket must not already be bound. (The format of address depends on the address family — refer to the socket documentation for more information.) To mark the socket as re-usable (setting the SO_REUSEADDR option), call the dispatcher object’s set_reuse_addr() method.

operator.__iadd__()

operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.

difflib.SequenceMatcher.get_grouped_opcodes()

get_grouped_opcodes(n=3) Return a generator of groups with up to n lines of context. Starting with the groups returned by get_opcodes(), this method splits out smaller change clusters and eliminates intervening ranges which have no changes. The groups are returned in the same format as get_opcodes().

importlib.abc.FileLoader.load_module()

load_module(fullname) Calls super’s load_module(). Deprecated since version 3.4: Use Loader.exec_module() instead.

xml.sax.xmlreader.InputSource.getCharacterStream()

InputSource.getCharacterStream() Get the character stream for this input source.

logging.Logger.warning()

Logger.warning(msg, *args, **kwargs) Logs a message with level WARNING on this logger. The arguments are interpreted as for debug(). Note There is an obsolete method warn which is functionally identical to warning. As warn is deprecated, please do not use it - use warning instead.

ssl.PROTOCOL_TLSv1_2

ssl.PROTOCOL_TLSv1_2 Selects TLS version 1.2 as the channel encryption protocol. This is the most modern version, and probably the best choice for maximum protection, if both sides can speak it. Available only with openssl version 1.0.1+. New in version 3.4.