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.

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.

xml.sax.xmlreader.AttributesNS.getQNameByName()

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

xml.sax.xmlreader.Attributes.getNames()

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

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.

http.cookies.BaseCookie

class http.cookies.BaseCookie([input]) This class is a dictionary-like object whose keys are strings and whose values are Morsel instances. Note that upon setting a key to a value, the value is first converted to a Morsel containing the key and the value. If input is given, it is passed to the load() method.

codecs.getencoder()

codecs.getencoder(encoding) Look up the codec for the given encoding and return its encoder function. Raises a LookupError in case the encoding cannot be found.

curses.window.subwin()

window.subwin(begin_y, begin_x) window.subwin(nlines, ncols, begin_y, begin_x) Return a sub-window, whose upper-left corner is at (begin_y, begin_x), and whose width/height is ncols/nlines. By default, the sub-window will extend from the specified position to the lower right corner of the window.

http.cookiejar.Cookie.comment_url

Cookie.comment_url URL linking to a comment from the server explaining the function of this cookie, or None.

binhex.hexbin()

binhex.hexbin(input, output) Decode a binhex file input. input may be a filename or a file-like object supporting read() and close() methods. The resulting file is written to a file named output, unless the argument is None in which case the output filename is read from the binhex file.