http.cookiejar.CookiePolicy.path_return_ok()

CookiePolicy.path_return_ok(path, request) Return false if cookies should not be returned, given cookie path. See the documentation for domain_return_ok().

os.unsetenv()

os.unsetenv(key) Unset (delete) the environment variable named key. Such changes to the environment affect subprocesses started with os.system(), popen() or fork() and execv(). When unsetenv() is supported, deletion of items in os.environ is automatically translated into a corresponding call to unsetenv(); however, calls to unsetenv() don’t update os.environ, so it is actually preferable to delete items of os.environ. Availability: most flavors of Unix, Windows.

typing.MappingView

class typing.MappingView(Sized, Iterable[T_co]) A generic version of collections.abc.MappingView.

readline.write_history_file()

readline.write_history_file([filename]) Save the history list to a readline history file, overwriting any existing file. The default filename is ~/.history. This calls write_history() in the underlying library.

xml.etree.ElementTree.ElementTree.find()

find(match, namespaces=None) Same as Element.find(), starting at the root of the tree.

http.client.ImproperConnectionState

exception http.client.ImproperConnectionState A subclass of HTTPException.

tkinter.ttk.Combobox.get()

get() Returns the current value of the combobox.

ctypes.c_uint8

class ctypes.c_uint8 Represents the C 8-bit unsigned int datatype. Usually an alias for c_ubyte.

xml.etree.ElementTree.ElementTree.getroot()

getroot() Returns the root element for this tree.

unittest.TestCase.assertRaises()

assertRaises(exception, callable, *args, **kwds) assertRaises(exception, msg=None) Test that an exception is raised when callable is called with any positional or keyword arguments that are also passed to assertRaises(). The test passes if exception is raised, is an error if another exception is raised, or fails if no exception is raised. To catch any of a group of exceptions, a tuple containing the exception classes may be passed as exception. If only the exception and possibly the msg argum