re.error.pos

pos The index of pattern where compilation failed.

wave.Wave_read.rewind()

Wave_read.rewind() Rewind the file pointer to the beginning of the audio stream.

traceback.TracebackException.__suppress_context__

__suppress_context__ The __suppress_context__ value from the original exception.

os.chown()

os.chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True) Change the owner and group id of path to the numeric uid and gid. To leave one of the ids unchanged, set it to -1. This function can support specifying a file descriptor, paths relative to directory descriptors and not following symlinks. See shutil.chown() for a higher-level function that accepts names in addition to numeric ids. Availability: Unix. New in version 3.3: Added support for specifying an open file descriptor for pa

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

xml.etree.ElementTree.ElementTree.getroot()

getroot() Returns the root element for this tree.

ctypes.c_uint8

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

http.client.ImproperConnectionState

exception http.client.ImproperConnectionState A subclass of HTTPException.

tkinter.ttk.Combobox.get()

get() Returns the current value of the combobox.

os.closerange()

os.closerange(fd_low, fd_high) Close all file descriptors from fd_low (inclusive) to fd_high (exclusive), ignoring errors. Equivalent to (but much faster than): for fd in range(fd_low, fd_high): try: os.close(fd) except OSError: pass