xml.sax.SAXException.getMessage()

SAXException.getMessage() Return a human-readable message describing the error condition.

bz2.BZ2Compressor

class bz2.BZ2Compressor(compresslevel=9) Create a new compressor object. This object may be used to compress data incrementally. For one-shot compression, use the compress() function instead. compresslevel, if given, must be a number between 1 and 9. The default is 9. compress(data) Provide data to the compressor object. Returns a chunk of compressed data if possible, or an empty byte string otherwise. When you have finished providing data to the compressor, call the flush() method to fin

curses.ascii.isctrl()

curses.ascii.isctrl(c) Checks for an ASCII control character (ordinal values 0 to 31).

ensurepip.version()

ensurepip.version() Returns a string specifying the bundled version of pip that will be installed when bootstrapping an environment.

dis.disco()

dis.disco(code, lasti=-1, *, file=None) Disassemble a code object, indicating the last instruction if lasti was provided. The output is divided in the following columns: the line number, for the first instruction of each line the current instruction, indicated as -->, a labelled instruction, indicated with >>, the address of the instruction, the operation code name, operation parameters, and interpretation of the parameters in parentheses. The parameter interpretation recognizes l

multiprocessing.SimpleQueue.put()

put(item) Put item into the queue.

xmlrpc.client.ProtocolError.url

url The URI or URL that triggered the error.

multiprocessing.Queue.cancel_join_thread()

cancel_join_thread() Prevent join_thread() from blocking. In particular, this prevents the background thread from being joined automatically when the process exits – see join_thread(). A better name for this method might be allow_exit_without_flush(). It is likely to cause enqueued data to lost, and you almost certainly will not need to use it. It is really only there if you need the current process to exit immediately without waiting to flush enqueued data to the underlying pipe, and you do

cmath.log()

cmath.log(x[, base]) Returns the logarithm of x to the given base. If the base is not specified, returns the natural logarithm of x. There is one branch cut, from 0 along the negative real axis to -∞, continuous from above.

builtins

This module provides direct access to all ‘built-in’ identifiers of Python; for example, builtins.open is the full name for the built-in function open(). See Built-in Functions and Built-in Constants for documentation. This module is not normally accessed explicitly by most applications, but can be useful in modules that provide objects with the same name as a built-in value, but in which the built-in of that name is also needed. For example, in a module that wants to implement an open() functi