codecs.IncrementalDecoder

class codecs.IncrementalDecoder(errors='strict') Constructor for an IncrementalDecoder instance. All incremental decoders must provide this constructor interface. They are free to add additional keyword arguments, but only the ones defined here are used by the Python codec registry. The IncrementalDecoder may implement different error handling schemes by providing the errors keyword argument. See Error Handlers for possible values. The errors argument will be assigned to an attribute of the

logging.Handler.setFormatter()

Handler.setFormatter(form) Sets the Formatter for this handler to form.

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.