smtpd.SMTPChannel.peer

peer Holds the name of the client peer as returned by conn.getpeername() where conn is conn.

pathlib.Path.cwd()

classmethod Path.cwd() Return a new path object representing the current directory (as returned by os.getcwd()): >>> Path.cwd() PosixPath('/home/antoine/pathlib')

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

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.