re.match.span()

match.span([group]) For a match m, return the 2-tuple (m.start(group), m.end(group)). Note that if group did not contribute to the match, this is (-1, -1). group defaults to zero, the entire match.

select.devpoll.close()

devpoll.close() Close the file descriptor of the polling object. New in version 3.4.

stringprep.in_table_c11_c12()

stringprep.in_table_c11_c12(code) Determine whether code is in tableC.1 (Space characters, union of C.1.1 and C.1.2).

curses.version

curses.version A string representing the current version of the module. Also available as __version__.

xml.dom.Node.nodeValue

Node.nodeValue This has a different meaning for each node type; see the DOM specification for details. The situation is similar to that with nodeName. The value is a string or None.

msilib.CAB.append()

append(full, file, logical) Add the file with the pathname full to the CAB file, under the name logical. If there is already a file named logical, a new file name is created. Return the index of the file in the CAB file, and the new name of the file inside the CAB file.

logging.handlers.SocketHandler

class logging.handlers.SocketHandler(host, port) Returns a new instance of the SocketHandler class intended to communicate with a remote machine whose address is given by host and port. Changed in version 3.4: If port is specified as None, a Unix domain socket is created using the value in host - otherwise, a TCP socket is created. close() Closes the socket. emit() Pickles the record’s attribute dictionary and writes it to the socket in binary format. If there is an error with the

doctest.DocTestFailure

exception doctest.DocTestFailure(test, example, got) An exception raised by DocTestRunner to signal that a doctest example’s actual output did not match its expected output. The constructor arguments are used to initialize the attributes of the same names.

operator.iand()

operator.iand(a, b) operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.

imaplib.ParseFlags()

imaplib.ParseFlags(flagstr) Converts an IMAP4 FLAGS response to a tuple of individual flags.