dict.values()

values() Return a new view of the dictionary’s values. See the documentation of view objects.

xml.sax.handler.ErrorHandler.warning()

ErrorHandler.warning(exception) Called when the parser presents minor warning information to the application. Parsing is expected to continue when this method returns, and document information will continue to be passed to the application. Raising an exception in this method will cause parsing to end.

concurrent.futures.Future.set_result()

set_result(result) Sets the result of the work associated with the Future to result. This method should only be used by Executor implementations and unit tests.

parser.st2tuple()

parser.st2tuple(st, line_info=False, col_info=False) This function accepts an ST object from the caller in st and returns a Python tuple representing the equivalent parse tree. Other than returning a tuple instead of a list, this function is identical to st2list(). If line_info is true, line number information will be included for all terminal tokens as a third element of the list representing the token. This information is omitted if the flag is false or omitted.

traceback.TracebackException.text

text For syntax errors - the text where the error occurred.

str.zfill()

str.zfill(width) Return a copy of the string left filled with ASCII '0' digits to make a string of length width. A leading sign prefix ('+'/'-') is handled by inserting the padding after the sign character rather than before. The original string is returned if width is less than or equal to len(s). For example: >>> "42".zfill(5) '00042' >>> "-42".zfill(5) '-0042'

tarfile.TarInfo.isfifo()

TarInfo.isfifo() Return True if it is a FIFO.

re.fullmatch()

re.fullmatch(pattern, string, flags=0) If the whole string matches the regular expression pattern, return a corresponding match object. Return None if the string does not match the pattern; note that this is different from a zero-length match. New in version 3.4.

bz2.decompress()

bz2.decompress(data) Decompress data. If data is the concatenation of multiple compressed streams, decompress all of the streams. For incremental decompression, use a BZ2Decompressor instead. Changed in version 3.3: Support for multi-stream inputs was added.

email.utils.decode_rfc2231()

email.utils.decode_rfc2231(s) Decode the string s according to RFC 2231.