doctest.testsource()

doctest.testsource(module, name) Convert the doctest for an object to a script. Argument module is a module object, or dotted name of a module, containing the object whose doctests are of interest. Argument name is the name (within the module) of the object with the doctests of interest. The result is a string, containing the object’s docstring converted to a Python script, as described for script_from_examples() above. For example, if module a.py contains a top-level function f(), then impo

os.tcgetpgrp()

os.tcgetpgrp(fd) Return the process group associated with the terminal given by fd (an open file descriptor as returned by os.open()). Availability: Unix.

http.cookies.BaseCookie.load()

BaseCookie.load(rawdata) If rawdata is a string, parse it as an HTTP_COOKIE and add the values found there as Morsels. If it is a dictionary, it is equivalent to: for k, v in rawdata.items(): cookie[k] = v

tkinter.tix.Tree

class tkinter.tix.Tree The Tree widget can be used to display hierarchical data in a tree form. The user can adjust the view of the tree by opening or closing parts of the tree.

imghdr.what()

imghdr.what(filename, h=None) Tests the image data contained in the file named by filename, and returns a string describing the image type. If optional h is provided, the filename is ignored and h is assumed to contain the byte stream to test.

multiprocessing.sharedctypes.multiprocessing.Manager()

multiprocessing.Manager() Returns a started SyncManager object which can be used for sharing objects between processes. The returned manager object corresponds to a spawned child process and has methods which will create shared objects and return corresponding proxies.

aifc.aifc.setmark()

aifc.setmark(id, pos, name) Add a mark with the given id (larger than 0), and the given name at the given position. This method can be called at any time before close().

http.client.HTTPConnection.connect()

HTTPConnection.connect() Connect to the server specified when the object was created. By default, this is called automatically when making a request if the client does not already have a connection.

wsgiref.simple_server.WSGIRequestHandler

class wsgiref.simple_server.WSGIRequestHandler(request, client_address, server) Create an HTTP handler for the given request (i.e. a socket), client_address (a (host,port) tuple), and server (WSGIServer instance). You do not need to create instances of this class directly; they are automatically created as needed by WSGIServer objects. You can, however, subclass this class and supply it as a handler_class to the make_server() function. Some possibly relevant methods for overriding in subclas

pipes.Template.clone()

Template.clone() Return a new, equivalent, pipeline template.