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

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

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

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.

http.cookiejar.Cookie.comment_url

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

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.

platform.version()

platform.version() Returns the system’s release version, e.g. '#3 on degas'. An empty string is returned if the value cannot be determined.

cmath.tanh()

cmath.tanh(x) Return the hyperbolic tangent of x.

codecs.iterencode()

codecs.iterencode(iterator, encoding, errors='strict', **kwargs) Uses an incremental encoder to iteratively encode the input provided by iterator. This function is a generator. The errors argument (as well as any other keyword argument) is passed through to the incremental encoder.

wsgiref.handlers.BaseHandler.sendfile()

sendfile() Override to implement platform-specific file transmission. This method is called only if the application’s return value is an instance of the class specified by the wsgi_file_wrapper attribute. It should return a true value if it was able to successfully transmit the file, so that the default transmission code will not be executed. The default implementation of this method just returns a false value.