curses.window.derwin()

window.derwin(begin_y, begin_x) window.derwin(nlines, ncols, begin_y, begin_x) An abbreviation for “derive window”, derwin() is the same as calling subwin(), except that begin_y and begin_x are relative to the origin of the window, rather than relative to the entire screen. Return a window object for the derived window.

collections.deque.remove()

remove(value) Remove the first occurrence of value. If not found, raises a ValueError.

multiprocessing.RLock.acquire()

acquire(block=True, timeout=None) Acquire a lock, blocking or non-blocking. When invoked with the block argument set to True, block until the lock is in an unlocked state (not owned by any process or thread) unless the lock is already owned by the current process or thread. The current process or thread then takes ownership of the lock (if it does not already have ownership) and the recursion level inside the lock increments by one, resulting in a return value of True. Note that there are se

tarfile.TarInfo.islnk()

TarInfo.islnk() Return True if it is a hard link.

gettext.GNUTranslations.lgettext()

GNUTranslations.lgettext(message) Equivalent to gettext(), but the translation is returned as a bytestring encoded in the selected output charset, or in the preferred system encoding if no encoding was explicitly set with set_output_charset().

urllib.robotparser.RobotFileParser.modified()

modified() Sets the time the robots.txt file was last fetched to the current time.

email.headerregistry.Group.display_name

display_name The display_name of the group. If it is None and there is exactly one Address in addresses, then the Group represents a single address that is not in a group.

codecs.CodecInfo.streamwriter

streamwriter streamreader Stream writer and reader classes or factory functions. These have to provide the interface defined by the base classes StreamWriter and StreamReader, respectively. Stream codecs can maintain state.

asyncio.AbstractEventLoop

class asyncio.AbstractEventLoop Abstract base class of event loops. This class is not thread safe.

curses.termattrs()

curses.termattrs() Return a logical OR of all video attributes supported by the terminal. This information is useful when a curses program needs complete control over the appearance of the screen.