queue.Queue.full()

Queue.full() Return True if the queue is full, False otherwise. If full() returns True it doesn’t guarantee that a subsequent call to get() will not block. Similarly, if full() returns False it doesn’t guarantee that a subsequent call to put() will not block.

bdb.Bdb.runeval()

runeval(expr, globals=None, locals=None) Debug an expression executed via the eval() function. globals and locals have the same meaning as in run().

html.parser.HTMLParser.handle_charref()

HTMLParser.handle_charref(name) This method is called to process decimal and hexadecimal numeric character references of the form &#NNN; and &#xNNN;. For example, the decimal equivalent for > is >, whereas the hexadecimal is >; in this case the method will receive '62' or 'x3E'. This method is never called if convert_charrefs is True.

doctest.DocTestRunner.report_failure()

report_failure(out, test, example, got) Report that the given example failed. This method is provided to allow subclasses of DocTestRunner to customize their output; it should not be called directly. example is the example about to be processed. got is the actual output from the example. test is the test containing example. out is the output function that was passed to DocTestRunner.run().

importlib.machinery.SOURCE_SUFFIXES

importlib.machinery.SOURCE_SUFFIXES A list of strings representing the recognized file suffixes for source modules. New in version 3.3.

xml.dom.NoModificationAllowedErr

exception xml.dom.NoModificationAllowedErr Raised on attempts to modify an object where modifications are not allowed (such as for read-only nodes).

email.message.Message.__str__()

__str__() Equivalent to as_string(). Allows str(msg) to produce a string containing the formatted message.

py_compile.main()

py_compile.main(args=None) Compile several source files. The files named in args (or on the command line, if args is None) are compiled and the resulting byte-code is cached in the normal manner. This function does not search a directory structure to locate source files; it only compiles files named explicitly. If '-' is the only parameter in args, the list of files is taken from standard input. Changed in version 3.2: Added support for '-'.

wsgiref.handlers.BaseHandler.origin_server

origin_server This attribute should be set to a true value if the handler’s _write() and _flush() are being used to communicate directly to the client, rather than via a CGI-like gateway protocol that wants the HTTP status in a special Status: header. This attribute’s default value is true in BaseHandler, but false in BaseCGIHandler and CGIHandler.

random.normalvariate()

random.normalvariate(mu, sigma) Normal distribution. mu is the mean, and sigma is the standard deviation.