urllib.robotparser.RobotFileParser.parse()

parse(lines) Parses the lines argument.

xml.etree.ElementTree.Element.makeelement()

makeelement(tag, attrib) Creates a new element object of the same type as this element. Do not call this method, use the SubElement() factory function instead.

os.getppid()

os.getppid() Return the parent’s process id. When the parent process has exited, on Unix the id returned is the one of the init process (1), on Windows it is still the same id, which may be already reused by another process. Availability: Unix, Windows. Changed in version 3.2: Added support for Windows.

tkinter.ttk.Style.theme_settings()

theme_settings(themename, settings) Temporarily sets the current theme to themename, apply specified settings and then restore the previous theme. Each key in settings is a style and each value may contain the keys ‘configure’, ‘map’, ‘layout’ and ‘element create’ and they are expected to have the same format as specified by the methods Style.configure(), Style.map(), Style.layout() and Style.element_create() respectively. As an example, let’s change the Combobox for the default theme a bit:

xml.sax.handler.ContentHandler.setDocumentLocator()

ContentHandler.setDocumentLocator(locator) Called by the parser to give the application a locator for locating the origin of document events. SAX parsers are strongly encouraged (though not absolutely required) to supply a locator: if it does so, it must supply the locator to the application by invoking this method before invoking any of the other methods in the DocumentHandler interface. The locator allows the application to determine the end position of any document-related event, even if

multiprocessing.pool.Pool.close()

close() Prevents any more tasks from being submitted to the pool. Once all the tasks have been completed the worker processes will exit.

sysconfig.get_path()

sysconfig.get_path(name[, scheme[, vars[, expand]]]) Return an installation path corresponding to the path name, from the install scheme named scheme. name has to be a value from the list returned by get_path_names(). sysconfig stores installation paths corresponding to each path name, for each platform, with variables to be expanded. For instance the stdlib path for the nt scheme is: {base}/Lib. get_path() will use the variables returned by get_config_vars() to expand the path. All variable

http.server.BaseHTTPRequestHandler.log_date_time_string()

log_date_time_string() Returns the current date and time, formatted for logging.

xmlrpc.server.CGIXMLRPCRequestHandler.register_instance()

CGIXMLRPCRequestHandler.register_instance(instance) Register an object which is used to expose method names which have not been registered using register_function(). If instance contains a _dispatch() method, it is called with the requested method name and the parameters from the request; the return value is returned to the client as the result. If instance does not have a _dispatch() method, it is searched for an attribute matching the name of the requested method; if the requested method n

turtle.title()

turtle.title(titlestring) Parameters: titlestring – a string that is shown in the titlebar of the turtle graphics window Set title of turtle window to titlestring. >>> screen.title("Welcome to the turtle zoo!")