curses.panel.Panel.top()

Panel.top() Push panel to the top of the stack.

curses.mousemask()

curses.mousemask(mousemask) Set the mouse events to be reported, and return a tuple (availmask, oldmask). availmask indicates which of the specified mouse events can be reported; on complete failure it returns 0. oldmask is the previous value of the given window’s mouse event mask. If this function is never called, no mouse events are ever reported.

wave.Wave_write.tell()

Wave_write.tell() Return current position in the file, with the same disclaimer for the Wave_read.tell() and Wave_read.setpos() methods.

ResourceWarning

exception ResourceWarning Base class for warnings related to resource usage. New in version 3.2.

shlex.shlex.quotes

shlex.quotes Characters that will be considered string quotes. The token accumulates until the same quote is encountered again (thus, different quote types protect each other as in the shell.) By default, includes ASCII single and double quotes.

heapq.nsmallest()

heapq.nsmallest(n, iterable, key=None) Return a list with the n smallest elements from the dataset defined by iterable. key, if provided, specifies a function of one argument that is used to extract a comparison key from each element in the iterable: key=str.lower Equivalent to: sorted(iterable, key=key)[:n]

tracemalloc.Snapshot.load()

classmethod load(filename) Load a snapshot from a file. See also dump().

platform.python_build()

platform.python_build() Returns a tuple (buildno, builddate) stating the Python build number and date as strings.

multiprocessing.Lock.acquire()

acquire(block=True, timeout=None) Acquire a lock, blocking or non-blocking. With the block argument set to True (the default), the method call will block until the lock is in an unlocked state, then set it to locked and return True. Note that the name of this first argument differs from that in threading.Lock.acquire(). With the block argument set to False, the method call does not block. If the lock is currently in a locked state, return False; otherwise set the lock to a locked state and r

weakref.finalize.__call__()

__call__() If self is alive then mark it as dead and return the result of calling func(*args, **kwargs). If self is dead then return None.