tkinter.ttk.Notebook.index()

index(tab_id) Returns the numeric index of the tab specified by tab_id, or the total number of tabs if tab_id is the string “end”.

bytes.rpartition()

bytes.rpartition(sep) bytearray.rpartition(sep) Split the sequence at the last occurrence of sep, and return a 3-tuple containing the part before the separator, the separator, and the part after the separator. If the separator is not found, return a 3-tuple containing a copy of the original sequence, followed by two empty bytes or bytearray objects. The separator to search for may be any bytes-like object.

msilib.schema

msilib.schema This is the standard MSI schema for MSI 2.0, with the tables variable providing a list of table definitions, and _Validation_records providing the data for MSI validation.

xml.sax.xmlreader.Locator

class xml.sax.xmlreader.Locator Interface for associating a SAX event with a document location. A locator object will return valid results only during calls to DocumentHandler methods; at any other time, the results are unpredictable. If information is not available, methods may return None.

asyncio.QueueFull

exception asyncio.QueueFull Exception raised when the put_nowait() method is called on a Queue object which is full.

doctest.DocTestParser.parse()

parse(string, name='') Divide the given string into examples and intervening text, and return them as a list of alternating Examples and strings. Line numbers for the Examples are 0-based. The optional argument name is a name identifying this string, and is only used for error messages.

ProcessLookupError

exception ProcessLookupError Raised when a given process doesn’t exist. Corresponds to errno ESRCH.

unittest.TestCase.assertIn()

assertIn(first, second, msg=None) assertNotIn(first, second, msg=None) Test that first is (or is not) in second. New in version 3.1.

ctypes.c_int32

class ctypes.c_int32 Represents the C 32-bit signed int datatype. Usually an alias for c_int.

socketserver.StreamRequestHandler

class socketserver.StreamRequestHandler class socketserver.DatagramRequestHandler These BaseRequestHandler subclasses override the setup() and finish() methods, and provide self.rfile and self.wfile attributes. The self.rfile and self.wfile attributes can be read or written, respectively, to get the request data or return data to the client.