msilib.View.GetColumnInfo()

View.GetColumnInfo(kind) Return a record describing the columns of the view, through calling MsiViewGetColumnInfo(). kind can be either MSICOLINFO_NAMES or MSICOLINFO_TYPES.

tracemalloc.get_traced_memory()

tracemalloc.get_traced_memory() Get the current size and peak size of memory blocks traced by the tracemalloc module as a tuple: (current: int, peak: int).

tkinter.ttk.Treeview.get_children()

get_children(item=None) Returns the list of children belonging to item. If item is not specified, returns root children.

http.cookiejar.DefaultCookiePolicy.strict_ns_set_path

DefaultCookiePolicy.strict_ns_set_path Don’t allow setting cookies whose path doesn’t path-match request URI.

csv.excel_tab

class csv.excel_tab The excel_tab class defines the usual properties of an Excel-generated TAB-delimited file. It is registered with the dialect name 'excel-tab'.

importlib.abc.InspectLoader.exec_module()

exec_module(module) Implementation of Loader.exec_module(). New in version 3.4.

ssl.OP_NO_SSLv3

ssl.OP_NO_SSLv3 Prevents an SSLv3 connection. This option is only applicable in conjunction with PROTOCOL_SSLv23. It prevents the peers from choosing SSLv3 as the protocol version. New in version 3.2.

subprocess.Popen

class subprocess.Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0, restore_signals=True, start_new_session=False, pass_fds=()) Execute a child program in a new process. On POSIX, the class uses os.execvp()-like behavior to execute the child program. On Windows, the class uses the Windows CreateProcess() function. The arguments to Popen ar

http.server.BaseHTTPRequestHandler.version_string()

version_string() Returns the server software’s version string. This is a combination of the server_version and sys_version attributes.

enum.Enum

class enum.Enum Base class for creating enumerated constants. See section Functional API for an alternate construction syntax.