http.client.BadStatusLine

exception http.client.BadStatusLine A subclass of HTTPException. Raised if a server responds with a HTTP status code that we don’t understand.

re.regex.sub()

regex.sub(repl, string, count=0) Identical to the sub() function, using the compiled pattern.

xml.parsers.expat.xmlparser.CurrentColumnNumber

xmlparser.CurrentColumnNumber Current column number in the parser input.

select.devpoll.closed

devpoll.closed True if the polling object is closed. New in version 3.4.

tkinter.tix.NoteBook

class tkinter.tix.NoteBook The NoteBook widget can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages. At one time only one of these pages can be shown. The user can navigate through these pages by choosing the visual “tabs” at the top of the NoteBook widget.

msvcrt.ungetwch()

msvcrt.ungetwch(unicode_char) Wide char variant of ungetch(), accepting a Unicode value.

xml.sax.handler.all_features

xml.sax.handler.all_features List of all features.

struct.Struct.iter_unpack()

iter_unpack(buffer) Identical to the iter_unpack() function, using the compiled format. The buffer’s size in bytes must be a multiple of size. New in version 3.4.

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