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.

configparser.ConfigParser.sections()

sections() Return a list of the sections available; the default section is not included in the list.

xmlrpc.server.SimpleXMLRPCServer.register_multicall_functions()

SimpleXMLRPCServer.register_multicall_functions() Registers the XML-RPC multicall function system.multicall.

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.

xmlrpc.server.DocCGIXMLRPCRequestHandler.set_server_documentation()

DocCGIXMLRPCRequestHandler.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.

datetime.date.isoformat()

date.isoformat() Return a string representing the date in ISO 8601 format, ‘YYYY-MM-DD’. For example, date(2002, 12, 4).isoformat() == '2002-12-04'.

tracemalloc.Filter.inclusive

inclusive If inclusive is True (include), only trace memory blocks allocated in a file with a name matching filename_pattern at line number lineno. If inclusive is False (exclude), ignore memory blocks allocated in a file with a name matching filename_pattern at line number lineno.