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.

wsgiref.handlers.BaseHandler.os_environ

os_environ The default environment variables to be included in every request’s WSGI environment. By default, this is a copy of os.environ at the time that wsgiref.handlers was imported, but subclasses can either create their own at the class or instance level. Note that the dictionary should be considered read-only, since the default value is shared between multiple classes and instances.

xmlrpc.server.DocXMLRPCServer.set_server_documentation()

DocXMLRPCServer.set_server_documentation(server_documentation) Set the description used in the generated HTML documentation. This description will appear as a paragraph, below the server name, in the documentation.

audioop.ulaw2lin()

audioop.ulaw2lin(fragment, width) Convert sound fragments in u-LAW encoding to linearly encoded sound fragments. u-LAW encoding always uses 8 bits samples, so width refers only to the sample width of the output fragment here.

cmd.Cmd.emptyline()

Cmd.emptyline() Method called when an empty line is entered in response to the prompt. If this method is not overridden, it repeats the last nonempty command entered.