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.

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')

smtpd.SMTPChannel.peer

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

msilib.View.Fetch()

View.Fetch() Return a result record of the query, through calling MsiViewFetch().

sys.displayhook()

sys.displayhook(value) If value is not None, this function prints repr(value) to sys.stdout, and saves value in builtins._. If repr(value) is not encodable to sys.stdout.encoding with sys.stdout.errors error handler (which is probably 'strict'), encode it to sys.stdout.encoding with 'backslashreplace' error handler. sys.displayhook is called on the result of evaluating an expression entered in an interactive Python session. The display of these values can be customized by assigning another o

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.

select.devpoll.poll()

devpoll.poll([timeout]) Polls the set of registered file descriptors, and returns a possibly-empty list containing (fd, event) 2-tuples for the descriptors that have events or errors to report. fd is the file descriptor, and event is a bitmask with bits set for the reported events for that descriptor — POLLIN for waiting input, POLLOUT to indicate that the descriptor can be written to, and so forth. An empty list indicates that the call timed out and no file descriptors had any events to rep

xml.sax.handler.property_lexical_handler

xml.sax.handler.property_lexical_handler value: "http://xml.org/sax/properties/lexical-handler" data type: xml.sax.sax2lib.LexicalHandler (not supported in Python 2) description: An optional extension handler for lexical events like comments. access: read/write

ipaddress.IPv4Address.is_private

is_private True if the address is allocated for private networks. See iana-ipv4-special-registry (for IPv4) or iana-ipv6-special-registry (for IPv6).