decimal.Context.abs()

abs(x) Returns the absolute value of x.

str.rpartition()

str.rpartition(sep) Split the string at the last occurrence of sep, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing two empty strings, followed by the string itself.

tkinter.ttk.Treeview.bbox()

bbox(item, column=None) Returns the bounding box (relative to the treeview widget’s window) of the specified item in the form (x, y, width, height). If column is specified, returns the bounding box of that cell. If the item is not visible (i.e., if it is a descendant of a closed item or is scrolled offscreen), returns an empty string.

asyncio.SubprocessProtocol.pipe_connection_lost()

SubprocessProtocol.pipe_connection_lost(fd, exc) Called when one of the pipes communicating with the child process is closed. fd is the integer file descriptor that was closed.

winreg.DeleteKeyEx()

winreg.DeleteKeyEx(key, sub_key, access=KEY_WOW64_64KEY, reserved=0) Deletes the specified key. Note The DeleteKeyEx() function is implemented with the RegDeleteKeyEx Windows API function, which is specific to 64-bit versions of Windows. See the RegDeleteKeyEx documentation. key is an already open key, or one of the predefined HKEY_* constants. sub_key is a string that must be a subkey of the key identified by the key parameter. This value must not be None, and the key may not have subkeys

threading.Barrier.broken

broken A boolean that is True if the barrier is in the broken state.

typing.Iterator

class typing.Iterator(Iterable[T_co]) A generic version of the collections.abc.Iterator.

ossaudiodev.oss_audio_device.obufcount()

oss_audio_device.obufcount() Returns the number of samples that are in the hardware buffer yet to be played.

socket.getdefaulttimeout()

socket.getdefaulttimeout() Return the default timeout in seconds (float) for new socket objects. A value of None indicates that new socket objects have no timeout. When the socket module is first imported, the default is None.

asyncio.Future.exception()

exception() Return the exception that was set on this future. The exception (or None if no exception was set) is returned only if the future is done. If the future has been cancelled, raises CancelledError. If the future isn’t done yet, raises InvalidStateError.