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.

http.cookiejar.FileCookieJar.delayload

FileCookieJar.delayload If true, load cookies lazily from disk. This attribute should not be assigned to. This is only a hint, since this only affects performance, not behaviour (unless the cookies on disk are changing). A CookieJar object may ignore it. None of the FileCookieJar classes included in the standard library lazily loads cookies.

urllib.request.url2pathname()

urllib.request.url2pathname(path) Convert the path component path from a percent-encoded URL to the local syntax for a path. This does not accept a complete URL. This function uses unquote() to decode path.

tkinter.ttk.Treeview.focus()

focus(item=None) If item is specified, sets the focus item to item. Otherwise, returns the current focus item, or ‘’ if there is none.

tkinter.tix.PanedWindow

class tkinter.tix.PanedWindow The PanedWindow widget allows the user to interactively manipulate the sizes of several panes. The panes can be arranged either vertically or horizontally. The user changes the sizes of the panes by dragging the resize handle between two panes.

turtle.up()

turtle.up() Pull the pen up – no drawing when moving.

ssl.SSLContext.verify_mode

SSLContext.verify_mode Whether to try to verify other peers’ certificates and how to behave if verification fails. This attribute must be one of CERT_NONE, CERT_OPTIONAL or CERT_REQUIRED.

xml.etree.ElementTree.Element.clear()

clear() Resets an element. This function removes all subelements, clears all attributes, and sets the text and tail attributes to None.

logging.Formatter.formatStack()

formatStack(stack_info) Formats the specified stack information (a string as returned by traceback.print_stack(), but with the last newline removed) as a string. This default implementation just returns the input value.