codeop.Compile

class codeop.Compile Instances of this class have __call__() methods identical in signature to the built-in function compile(), but with the difference that if the instance compiles program text containing a __future__ statement, the instance ‘remembers’ and compiles all subsequent program texts with the statement in force.

shlex.shlex.escape

shlex.escape Characters that will be considered as escape. This will be only used in POSIX mode, and includes just '\' by default.

mailbox.MH.get_sequences()

get_sequences() Return a dictionary of sequence names mapped to key lists. If there are no sequences, the empty dictionary is returned.

cmd.Cmd.doc_header

Cmd.doc_header The header to issue if the help output has a section for documented commands.

str.center()

str.center(width[, fillchar]) Return centered in a string of length width. Padding is done using the specified fillchar (default is an ASCII space). The original string is returned if width is less than or equal to len(s).

wave.Wave_read.getcomptype()

Wave_read.getcomptype() Returns compression type ('NONE' is the only supported type).

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.