filecmp.dircmp.left_list

left_list Files and subdirectories in a, filtered by hide and ignore.

configparser.InterpolationSyntaxError

exception configparser.InterpolationSyntaxError Exception raised when the source text into which substitutions are made does not conform to the required syntax. Subclass of InterpolationError.

inspect.Signature.return_annotation

return_annotation The “return” annotation for the callable. If the callable has no “return” annotation, this attribute is set to Signature.empty.

xml.etree.ElementTree.XMLParser

class xml.etree.ElementTree.XMLParser(html=0, target=None, encoding=None) This class is the low-level building block of the module. It uses xml.parsers.expat for efficient, event-based parsing of XML. It can be fed XML data incrementally with the feed() method, and parsing events are translated to a push API - by invoking callbacks on the target object. If target is omitted, the standard TreeBuilder is used. The html argument was historically used for backwards compatibility and is now depre

xml.dom.Attr.name

Attr.name The attribute name. In a namespace-using document it may include a colon.

str.startswith()

str.startswith(prefix[, start[, end]]) Return True if string starts with the prefix, otherwise return False. prefix can also be a tuple of prefixes to look for. With optional start, test string beginning at that position. With optional end, stop comparing string at that position.

curses.window.insnstr()

window.insnstr(str, n[, attr]) window.insnstr(y, x, str, n[, attr]) Insert a character string (as many characters as will fit on the line) before the character under the cursor, up to n characters. If n is zero or negative, the entire string is inserted. All characters to the right of the cursor are shifted right, with the rightmost characters on the line being lost. The cursor position does not change (after moving to y, x, if specified).

os.path.exists()

os.path.exists(path) Return True if path refers to an existing path or an open file descriptor. Returns False for broken symbolic links. On some platforms, this function may return False if permission is not granted to execute os.stat() on the requested file, even if the path physically exists. Changed in version 3.3: path can now be an integer: True is returned if it is an open file descriptor, False otherwise.

decimal.Context.sqrt()

sqrt(x) Square root of a non-negative number to context precision.

zipimport.ZipImportError

exception zipimport.ZipImportError Exception raised by zipimporter objects. It’s a subclass of ImportError, so it can be caught as ImportError, too.