site.getusersitepackages()

site.getusersitepackages() Return the path of the user-specific site-packages directory, USER_SITE. If it is not initialized yet, this function will also set it, respecting PYTHONNOUSERSITE and USER_BASE. New in version 3.2.

functools.partial.keywords

partial.keywords The keyword arguments that will be supplied when the partial object is called.

xml.dom.Document.createAttributeNS()

Document.createAttributeNS(namespaceURI, qualifiedName) Create and return an attribute node with a namespace. The tagName may have a prefix. This method does not associate the attribute node with any particular element. You must use setAttributeNode() on the appropriate Element object to use the newly created attribute instance.

subprocess.Popen.stdin

Popen.stdin If the stdin argument was PIPE, this attribute is a writeable stream object as returned by open(). If the universal_newlines argument was True, the stream is a text stream, otherwise it is a byte stream. If the stdin argument was not PIPE, this attribute is None.

xml.dom.SyntaxErr

exception xml.dom.SyntaxErr Raised when an invalid or illegal string is specified.

logging.handlers.BaseRotatingHandler

class logging.handlers.BaseRotatingHandler(filename, mode, encoding=None, delay=False) The parameters are as for FileHandler. The attributes are: namer If this attribute is set to a callable, the rotation_filename() method delegates to this callable. The parameters passed to the callable are those passed to rotation_filename(). Note The namer function is called quite a few times during rollover, so it should be as simple and as fast as possible. It should also return the same output ever

msvcrt.kbhit()

msvcrt.kbhit() Return true if a keypress is waiting to be read.

pathlib.Path.is_block_device()

Path.is_block_device() Return True if the path points to a block device (or a symbolic link pointing to a block device), False if it points to another kind of file. False is also returned if the path doesn’t exist or is a broken symlink; other errors (such as permission errors) are propagated.

set.update()

update(other, ...) set |= other | ... Update the set, adding elements from all others.

str.rindex()

str.rindex(sub[, start[, end]]) Like rfind() but raises ValueError when the substring sub is not found.