curses.window.standend()

window.standend() Turn off the standout attribute. On some terminals this has the side effect of turning off all attributes.

os.lchmod()

os.lchmod(path, mode) Change the mode of path to the numeric mode. If path is a symlink, this affects the symlink rather than the target. See the docs for chmod() for possible values of mode. As of Python 3.3, this is equivalent to os.chmod(path, mode, follow_symlinks=False). Availability: Unix.

curses.ascii.isspace()

curses.ascii.isspace(c) Checks for ASCII white-space characters; space, line feed, carriage return, form feed, horizontal tab, vertical tab.

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.

turtle.up()

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

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.

ipaddress.ip_address()

ipaddress.ip_address(address) Return an IPv4Address or IPv6Address object depending on the IP address passed as argument. Either IPv4 or IPv6 addresses may be supplied; integers less than 2**32 will be considered to be IPv4 by default. A ValueError is raised if address does not represent a valid IPv4 or IPv6 address. >>> ipaddress.ip_address('192.168.0.1') IPv4Address('192.168.0.1') >>> ipaddress.ip_address('2001:db8::') IPv6Address('2001:db8::')

decimal.Context.compare()

compare(x, y) Compares x and y numerically.