test.support.is_jython

test.support.is_jython True if the running interpreter is Jython.

asyncio.Task

class asyncio.Task(coro, *, loop=None) Schedule the execution of a coroutine: wrap it in a future. A task is a subclass of Future. A task is responsible for executing a coroutine object in an event loop. If the wrapped coroutine yields from a future, the task suspends the execution of the wrapped coroutine and waits for the completition of the future. When the future is done, the execution of the wrapped coroutine restarts with the result or the exception of the future. Event loops use coope

wsgiref.handlers.BaseHandler.wsgi_multithread

wsgi_multithread The value to be used for the wsgi.multithread environment variable. It defaults to true in BaseHandler, but may have a different default (or be set by the constructor) in the other subclasses.

xml.etree.ElementTree.XMLParser.close()

close() Finishes feeding data to the parser. Returns the result of calling the close() method of the target passed during construction; by default, this is the toplevel document element.

msilib.UuidCreate()

msilib.UuidCreate() Return the string representation of a new unique identifier. This wraps the Windows API functions UuidCreate() and UuidToString().

doctest.DocTestFinder.find()

find(obj[, name][, module][, globs][, extraglobs]) Return a list of the DocTests that are defined by obj‘s docstring, or by any of its contained objects’ docstrings. The optional argument name specifies the object’s name; this name will be used to construct names for the returned DocTests. If name is not specified, then obj.__name__ is used. The optional parameter module is the module that contains the given object. If the module is not specified or is None, then the test finder will attempt

xml.dom.Node.firstChild

Node.firstChild The first child of the node, if there are any, or None. This is a read-only attribute.

xml.dom.Node.lastChild

Node.lastChild The last child of the node, if there are any, or None. This is a read-only attribute.

ipaddress.IPv6Network.is_multicast

is_multicast

wave.Wave_write.setnframes()

Wave_write.setnframes(n) Set the number of frames to n. This will be changed later if the number of frames actually written is different (this update attempt will raise an error if the output stream is not seekable).