curses.textpad.Textbox.edit()

edit([validator]) This is the entry point you will normally use. It accepts editing keystrokes until one of the termination keystrokes is entered. If validator is supplied, it must be a function. It will be called for each keystroke entered with the keystroke as a parameter; command dispatch is done on the result. This method returns the window contents as a string; whether blanks in the window are included is affected by the stripspaces attribute.

xml.parsers.expat.xmlparser.StartElementHandler()

xmlparser.StartElementHandler(name, attributes) Called for the start of every element. name is a string containing the element name, and attributes is the element attributes. If ordered_attributes is true, this is a list (see ordered_attributes for a full description). Otherwise it’s a dictionary mapping names to values.

colorsys.rgb_to_yiq()

colorsys.rgb_to_yiq(r, g, b) Convert the color from RGB coordinates to YIQ coordinates.

zipfile.ZipFile.close()

ZipFile.close() Close the archive file. You must call close() before exiting your program or essential records will not be written.

cmath.isinf()

cmath.isinf(x) Return True if either the real or the imaginary part of x is an infinity, and False otherwise.

bytes.join()

bytes.join(iterable) bytearray.join(iterable) Return a bytes or bytearray object which is the concatenation of the binary data sequences in the iterable iterable. A TypeError will be raised if there are any values in iterable that are not bytes-like objects, including str objects. The separator between elements is the contents of the bytes or bytearray object providing this method.

telnetlib.Telnet.read_sb_data()

Telnet.read_sb_data() Return the data collected between a SB/SE pair (suboption begin/end). The callback should access these data when it was invoked with a SE command. This method never blocks.

tabnanny.filename_only

tabnanny.filename_only Flag indicating whether to print only the filenames of files containing whitespace related problems. This is set to true by the -q option if called as a script.

filecmp.DEFAULT_IGNORES

filecmp.DEFAULT_IGNORES New in version 3.4. List of directories ignored by dircmp by default.

dbm.gnu.gdbm.close()

gdbm.close() Close the gdbm database.