pathlib.Path.unlink()

Path.unlink() Remove this file or symbolic link. If the path points to a directory, use Path.rmdir() instead.

logging.Logger.makeRecord()

Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info, func=None, extra=None, sinfo=None) This is a factory method which can be overridden in subclasses to create specialized LogRecord instances.

xml.parsers.expat.errors.codes

xml.parsers.expat.errors.codes A dictionary mapping numeric error codes to their string descriptions. New in version 3.2.

csv.field_size_limit()

csv.field_size_limit([new_limit]) Returns the current maximum field size allowed by the parser. If new_limit is given, this becomes the new limit.

datetime.timezone.dst()

timezone.dst(dt) Always returns None.

shutil.Error

exception shutil.Error This exception collects exceptions that are raised during a multi-file operation. For copytree(), the exception argument is a list of 3-tuples (srcname, dstname, exception).

xml.etree.ElementTree.ElementTree._setroot()

_setroot(element) Replaces the root element for this tree. This discards the current contents of the tree, and replaces it with the given element. Use with care. element is an element instance.

http.client.CannotSendRequest

exception http.client.CannotSendRequest A subclass of ImproperConnectionState.

pathlib.PurePath.parts

PurePath.parts A tuple giving access to the path’s various components: >>> p = PurePath('/usr/bin/python3') >>> p.parts ('/', 'usr', 'bin', 'python3') >>> p = PureWindowsPath('c:/Program Files/PSF') >>> p.parts ('c:\\', 'Program Files', 'PSF') (note how the drive and local root are regrouped in a single part)

xml.dom.DocumentType.entities

DocumentType.entities This is a NamedNodeMap giving the definitions of external entities. For entity names defined more than once, only the first definition is provided (others are ignored as required by the XML recommendation). This may be None if the information is not provided by the parser, or if no entities are defined.