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

stringprep.in_table_c21()

stringprep.in_table_c21(code) Determine whether code is in tableC.2.1 (ASCII control characters).

xml.sax.handler.ContentHandler.endElementNS()

ContentHandler.endElementNS(name, qname) Signals the end of an element in namespace mode. The name parameter contains the name of the element type, just as with the startElementNS() method, likewise the qname parameter.

str.isalpha()

str.isalpha() Return true if all characters in the string are alphabetic and there is at least one character, false otherwise. Alphabetic characters are those characters defined in the Unicode character database as “Letter”, i.e., those with general category property being one of “Lm”, “Lt”, “Lu”, “Ll”, or “Lo”. Note that this is different from the “Alphabetic” property defined in the Unicode Standard.

os.replace()

os.replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None) Rename the file or directory src to dst. If dst is a directory, OSError will be raised. If dst exists and is a file, it will be replaced silently if the user has permission. The operation may fail if src and dst are on different filesystems. If successful, the renaming will be an atomic operation (this is a POSIX requirement). This function can support specifying src_dir_fd and/or dst_dir_fd to supply paths relative to directory descr