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.

xml.dom.Attr.name

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

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

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.

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.

http.server.BaseHTTPRequestHandler.command

command Contains the command (request type). For example, 'GET'.

base64.standard_b64decode()

base64.standard_b64decode(s) Decode bytes-like object or ASCII string s using the standard Base64 alphabet and return the decoded bytes.

filecmp.dircmp.funny_files

funny_files Files which are in both a and b, but could not be compared.

filecmp.dircmp.left_list

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

operator.index()

operator.index(a) operator.__index__(a) Return a converted to an integer. Equivalent to a.__index__().