dis.code_info()

dis.code_info(x) Return a formatted multi-line string with detailed code object information for the supplied function, generator, method, source code string or code object. Note that the exact contents of code info strings are highly implementation dependent and they may change arbitrarily across Python VMs or Python releases. New in version 3.2.

cmd.Cmd.undoc_header

Cmd.undoc_header The header to issue if the help output has a section for undocumented commands (that is, there are do_*() methods without corresponding help_*() methods).

xml.sax.xmlreader.XMLReader.setEntityResolver()

XMLReader.setEntityResolver(handler) Set the current EntityResolver. If no EntityResolver is set, attempts to resolve an external entity will result in opening the system identifier for the entity, and fail if it is not available.

xml.sax.xmlreader.Attributes.getNames()

Attributes.getNames() Return the names of the attributes.

xml.sax.xmlreader.AttributesNS.getQNameByName()

AttributesNS.getQNameByName(name) Return the qualified name for a (namespace, localname) pair.

socketserver.ForkingMixIn

class socketserver.ForkingMixIn class socketserver.ThreadingMixIn Forking and threading versions of each type of server can be created using these mix-in classes. For instance, ThreadingUDPServer is created as follows: class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass The mix-in class comes first, since it overrides a method defined in UDPServer. Setting the various attributes also changes the behavior of the underlying server mechanism.

tkinter.ttk.Treeview.identify_column()

identify_column(x) Returns the data column identifier of the cell at position x. The tree column has ID #0.

multiprocessing.SimpleQueue

class multiprocessing.SimpleQueue It is a simplified Queue type, very close to a locked Pipe. empty() Return True if the queue is empty, False otherwise. get() Remove and return an item from the queue. put(item) Put item into the queue.

io.BufferedIOBase.readinto()

readinto(b) Read bytes into a pre-allocated, writable bytes-like object b and return the number of bytes read. Like read(), multiple reads may be issued to the underlying raw stream, unless the latter is interactive. A BlockingIOError is raised if the underlying raw stream is in non blocking-mode, and has no data available at the moment.

urllib.request.FancyURLopener.prompt_user_passwd()

prompt_user_passwd(host, realm) Return information needed to authenticate the user at the given host in the specified security realm. The return value should be a tuple, (user, password), which can be used for basic authentication. The implementation prompts for this information on the terminal; an application should override this method to use an appropriate interaction model in the local environment.