py_compile.PyCompileError

exception py_compile.PyCompileError Exception raised when an error occurs while attempting to compile the file.

ipaddress.IPv6Network.num_addresses

num_addresses

termios.tcflow()

termios.tcflow(fd, action) Suspend or resume input or output on file descriptor fd. The action argument can be TCOOFF to suspend output, TCOON to restart output, TCIOFF to suspend input, or TCION to restart input.

textwrap.fill()

textwrap.fill(text, width=70, **kwargs) Wraps the single paragraph in text, and returns a single string containing the wrapped paragraph. fill() is shorthand for "\n".join(wrap(text, ...)) In particular, fill() accepts exactly the same keyword arguments as wrap().

traceback.print_exc()

traceback.print_exc(limit=None, file=None, chain=True) This is a shorthand for print_exception(*sys.exc_info(), limit, file, chain).

gc.get_debug()

gc.get_debug() Return the debugging flags currently set.

ipaddress.IPv4Network.is_link_local

is_link_local These attributes are true for the network as a whole if they are true for both the network address and the broadcast address

tkinter.ttk.Style.theme_use()

theme_use(themename=None) If themename is not given, returns the theme in use. Otherwise, sets the current theme to themename, refreshes all widgets and emits a <<ThemeChanged>> event.

os.path.normpath()

os.path.normpath(path) Normalize a pathname by collapsing redundant separators and up-level references so that A//B, A/B/, A/./B and A/foo/../B all become A/B. This string manipulation may change the meaning of a path that contains symbolic links. On Windows, it converts forward slashes to backward slashes. To normalize case, use normcase().

shutil.rmtree.avoids_symlink_attacks

rmtree.avoids_symlink_attacks Indicates whether the current platform and implementation provides a symlink attack resistant version of rmtree(). Currently this is only true for platforms supporting fd-based directory access functions. New in version 3.3.