bdb.Bdb.do_clear()

do_clear(arg) Handle how a breakpoint must be removed when it is a temporary one. This method must be implemented by derived classes.

sysconfig.get_paths()

sysconfig.get_paths([scheme[, vars[, expand]]]) Return a dictionary containing all installation paths corresponding to an installation scheme. See get_path() for more information. If scheme is not provided, will use the default scheme for the current platform. If vars is provided, it must be a dictionary of variables that will update the dictionary used to expand the paths. If expand is set to False, the paths will not be expanded. If scheme is not an existing scheme, get_paths() will raise

bytes.endswith()

bytes.endswith(suffix[, start[, end]]) bytearray.endswith(suffix[, start[, end]]) Return True if the binary data ends with the specified suffix, otherwise return False. suffix can also be a tuple of suffixes to look for. With optional start, test beginning at that position. With optional end, stop comparing at that position. The suffix(es) to search for may be any bytes-like object.

xml.etree.ElementTree.XMLID()

xml.etree.ElementTree.XMLID(text, parser=None) Parses an XML section from a string constant, and also returns a dictionary which maps from element id:s to elements. text is a string containing XML data. parser is an optional parser instance. If not given, the standard XMLParser parser is used. Returns a tuple containing an Element instance and a dictionary.

re.match.endpos

match.endpos The value of endpos which was passed to the search() or match() method of a regex object. This is the index into the string beyond which the RE engine will not go.

inspect.stack()

inspect.stack(context=1) Return a list of frame records for the caller’s stack. The first entry in the returned list represents the caller; the last entry represents the outermost call on the stack. Changed in version 3.5: A list of named tuples FrameInfo(frame, filename, lineno, function, code_context, index) is returned.

inspect.iscoroutinefunction()

inspect.iscoroutinefunction(object) Return true if the object is a coroutine function (a function defined with an async def syntax). New in version 3.5.

ipaddress.IPv6Address.is_reserved

is_reserved

datetime.time.max

time.max The latest representable time, time(23, 59, 59, 999999).

imaplib.IMAP4.abort

exception IMAP4.abort IMAP4 server errors cause this exception to be raised. This is a sub-class of IMAP4.error. Note that closing the instance and instantiating a new one will usually allow recovery from this exception.