tkinter.ttk.Treeview.xview()

xview(*args) Query or modify horizontal position of the treeview.

os.devnull

os.devnull The file path of the null device. For example: '/dev/null' for POSIX, 'nul' for Windows. Also available via os.path.

logging.shutdown()

logging.shutdown() Informs the logging system to perform an orderly shutdown by flushing and closing all handlers. This should be called at application exit and no further use of the logging system should be made after this call.

mailbox.MaildirMessage.set_info()

set_info(info) Set “info” to info, which should be a string.

set.isdisjoint()

isdisjoint(other) Return True if the set has no elements in common with other. Sets are disjoint if and only if their intersection is the empty set.

ipaddress.IPv4Address.compressed

compressed

resource.prlimit()

resource.prlimit(pid, resource[, limits]) Combines setrlimit() and getrlimit() in one function and supports to get and set the resources limits of an arbitrary process. If pid is 0, then the call applies to the current process. resource and limits have the same meaning as in setrlimit(), except that limits is optional. When limits is not given the function returns the resource limit of the process pid. When limits is given the resource limit of the process is set and the former resource limi

unicodedata.lookup()

unicodedata.lookup(name) Look up character by name. If a character with the given name is found, return the corresponding character. If not found, KeyError is raised. Changed in version 3.3: Support for name aliases [1] and named sequences [2] has been added.

io.FileIO.name

name The file name. This is the file descriptor of the file when no name is given in the constructor.

mailbox.MMDFMessage.remove_flag()

remove_flag(flag) Unset the flag(s) specified by flag without changing other flags. To remove more than one flag at a time, flag maybe a string of more than one character.