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.

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

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.

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'.

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.

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.

operator.__imul__()

operator.__imul__(a, b) a = imul(a, b) is equivalent to a *= b.

unittest.TestCase.assertDictEqual()

assertDictEqual(first, second, msg=None) Test that two dictionaries are equal. If not, an error message is constructed that shows the differences in the dictionaries. This method will be used by default to compare dictionaries in calls to assertEqual(). New in version 3.1.

http.cookiejar.DefaultCookiePolicy.is_not_allowed()

DefaultCookiePolicy.is_not_allowed(domain) Return whether domain is not on the whitelist for setting or receiving cookies.