socket.socket.fileno()

socket.fileno() Return the socket’s file descriptor (a small integer), or -1 on failure. This is useful with select.select(). Under Windows the small integer returned by this method cannot be used where a file descriptor can be used (such as os.fdopen()). Unix does not have this limitation.

operator.__getitem__()

operator.__getitem__(a, b) Return the value of a at index b.

xml.parsers.expat.xmlparser.ErrorColumnNumber

xmlparser.ErrorColumnNumber Column number at which an error occurred.

termios.tcgetattr()

termios.tcgetattr(fd) Return a list containing the tty attributes for file descriptor fd, as follows: [iflag, oflag, cflag, lflag, ispeed, ospeed, cc] where cc is a list of the tty special characters (each a string of length 1, except the items with indices VMIN and VTIME, which are integers when these fields are defined). The interpretation of the flags and the speeds as well as the indexing in the cc array must be done using the symbolic constants defined in the termios module.

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

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.

argparse.ArgumentParser.parse_known_args()

ArgumentParser.parse_known_args(args=None, namespace=None)

ossaudiodev.oss_audio_device.write()

oss_audio_device.write(data) Write a bytes-like object data to the audio device and return the number of bytes written. If the audio device is in blocking mode (the default), the entire data is always written (again, this is different from usual Unix device semantics). If the device is in non-blocking mode, some data may not be written —see writeall(). Changed in version 3.5: Writable bytes-like object is now accepted.