difflib.Differ.compare()

compare(a, b) Compare two sequences of lines, and generate the delta (a sequence of lines). Each sequence must contain individual single-line strings ending with newlines. Such sequences can be obtained from the readlines() method of file-like objects. The delta generated also consists of newline-terminated strings, ready to be printed as-is via the writelines() method of a file-like object.

xml.parsers.expat.xmlparser.ErrorLineNumber

xmlparser.ErrorLineNumber Line number at which an error occurred.

curses.window.getyx()

window.getyx() Return a tuple (y, x) of current cursor position relative to the window’s upper-left corner.

json.JSONDecodeError.colno

colno The column corresponding to pos.

chunk.Chunk.getname()

getname() Returns the name (ID) of the chunk. This is the first 4 bytes of the chunk.

os.stat_result.st_size

st_size Size of the file in bytes, if it is a regular file or a symbolic link. The size of a symbolic link is the length of the pathname it contains, without a terminating null byte.

multiprocessing.Connection.send_bytes()

send_bytes(buffer[, offset[, size]]) Send byte data from a bytes-like object as a complete message. If offset is given then data is read from that position in buffer. If size is given then that many bytes will be read from buffer. Very large buffers (approximately 32 MB+, though it depends on the OS) may raise a ValueError exception

BrokenPipeError

exception BrokenPipeError A subclass of ConnectionError, raised when trying to write on a pipe while the other end has been closed, or trying to write on a socket which has been shutdown for writing. Corresponds to errno EPIPE and ESHUTDOWN.

memoryview.readonly

readonly A bool indicating whether the memory is read only.

locals()

locals() Update and return a dictionary representing the current local symbol table. Free variables are returned by locals() when it is called in function blocks, but not in class blocks. Note The contents of this dictionary should not be modified; changes may not affect the values of local and free variables used by the interpreter.