html.parser.HTMLParser.handle_endtag()

HTMLParser.handle_endtag(tag) This method is called to handle the end tag of an element (e.g. </div>). The tag argument is the name of the tag converted to lower case.

zipfile.ZipFile.extractall()

ZipFile.extractall(path=None, members=None, pwd=None) Extract all members from the archive to the current working directory. path specifies a different directory to extract to. members is optional and must be a subset of the list returned by namelist(). pwd is the password used for encrypted files. Warning Never extract archives from untrusted sources without prior inspection. It is possible that files are created outside of path, e.g. members that have absolute filenames starting with "/"

enum.IntEnum

class enum.IntEnum Base class for creating enumerated constants that are also subclasses of int.

multiprocessing.Barrier

class multiprocessing.Barrier(parties[, action[, timeout]]) A barrier object: a clone of threading.Barrier. New in version 3.3.

asyncio.BaseSubprocessTransport.get_pid()

get_pid() Return the subprocess process id as an integer.

sys.__interactivehook__

sys.__interactivehook__ When this attribute exists, its value is automatically called (with no arguments) when the interpreter is launched in interactive mode. This is done after the PYTHONSTARTUP file is read, so that you can set this hook there. The site module sets this. New in version 3.4.

xml.parsers.expat.ErrorString()

xml.parsers.expat.ErrorString(errno) Returns an explanatory string for a given error number errno.

decimal.Decimal.conjugate()

conjugate() Just returns self, this method is only to comply with the Decimal Specification.

html.parser.HTMLParser.close()

HTMLParser.close() Force processing of all buffered data as if it were followed by an end-of-file mark. This method may be redefined by a derived class to define additional processing at the end of the input, but the redefined version should always call the HTMLParser base class method close().

xml.dom.NamespaceErr

exception xml.dom.NamespaceErr If an attempt is made to change any object in a way that is not permitted with regard to the Namespaces in XML recommendation, this exception is raised.