os.minor()

os.minor(device) Extract the device minor number from a raw device number (usually the st_dev or st_rdev field from stat).

venv.create()

venv.create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False) Create an EnvBuilder with the given keyword arguments, and call its create() method with the env_dir argument. Changed in version 3.4: Added the with_pip parameter

stringprep.in_table_a1()

stringprep.in_table_a1(code) Determine whether code is in tableA.1 (Unassigned code points in Unicode 3.2).

difflib.HtmlDiff.make_table()

make_table(fromlines, tolines, fromdesc='', todesc='', context=False, numlines=5) Compares fromlines and tolines (lists of strings) and returns a string which is a complete HTML table showing line by line differences with inter-line and intra-line changes highlighted. The arguments for this method are the same as those for the make_file() method.

http.server.BaseHTTPRequestHandler.request_version

request_version Contains the version string from the request. For example, 'HTTP/1.0'.

email.parser.FeedParser

class email.parser.FeedParser(_factory=email.message.Message, *, policy=policy.compat32) Create a FeedParser instance. Optional _factory is a no-argument callable that will be called whenever a new message object is needed. It defaults to the email.message.Message class. If policy is specified (it must be an instance of a policy class) use the rules it specifies to update the representation of the message. If policy is not set, use the compat32 policy, which maintains backward compatibility

inspect.getmodule()

inspect.getmodule(object) Try to guess which module an object was defined in.

fnmatch.filter()

fnmatch.filter(names, pattern) Return the subset of the list of names that match pattern. It is the same as [n for n in names if fnmatch(n, pattern)], but implemented more efficiently.

ast.increment_lineno()

ast.increment_lineno(node, n=1) Increment the line number of each node in the tree starting at node by n. This is useful to “move code” to a different location in a file.

pathlib.PureWindowsPath

class pathlib.PureWindowsPath(*pathsegments) A subclass of PurePath, this path flavour represents Windows filesystem paths: >>> PureWindowsPath('c:/Program Files/') PureWindowsPath('c:/Program Files') pathsegments is specified similarly to PurePath.