asyncio.Queue.get()

coroutine get() Remove and return an item from the queue. If queue is empty, wait until an item is available. This method is a coroutine. See also The empty() method.

ssl.RAND_egd()

ssl.RAND_egd(path) If you are running an entropy-gathering daemon (EGD) somewhere, and path is the pathname of a socket connection open to it, this will read 256 bytes of randomness from the socket, and add it to the SSL pseudo-random number generator to increase the security of generated secret keys. This is typically only necessary on systems without better sources of randomness. See http://egd.sourceforge.net/ or http://prngd.sourceforge.net/ for sources of entropy-gathering daemons. Avai

unittest.TestResult.addSuccess()

addSuccess(test) Called when the test case test succeeds. The default implementation does nothing.

xml.etree.ElementTree.Element.findtext()

findtext(match, default=None, namespaces=None) Finds text for the first subelement matching match. match may be a tag name or a path. Returns the text content of the first matching element, or default if no element was found. Note that if the matching element has no text content an empty string is returned. namespaces is an optional mapping from namespace prefix to full name.

xml.sax.xmlreader.InputSource.setSystemId()

InputSource.setSystemId(id) Sets the system identifier of this InputSource.

ast.walk()

ast.walk(node) Recursively yield all descendant nodes in the tree starting at node (including node itself), in no specified order. This is useful if you only want to modify nodes in place and don’t care about the context.

importlib.machinery.ExtensionFileLoader.is_package()

is_package(fullname) Returns True if the file path points to a package’s __init__ module based on EXTENSION_SUFFIXES.

tkinter.ttk.Treeview.selection_remove()

selection_remove(items) Remove items from the selection.

asyncio.AbstractEventLoop.call_at()

AbstractEventLoop.call_at(when, callback, *args) Arrange for the callback to be called at the given absolute timestamp when (an int or float), using the same time reference as AbstractEventLoop.time(). This method’s behavior is the same as call_later(). An instance of asyncio.Handle is returned, which can be used to cancel the callback. Use functools.partial to pass keywords to the callback.

numbers.Complex.imag

imag Abstract. Retrieves the imaginary component of this number.