curses.window.insch()

window.insch(ch[, attr]) window.insch(y, x, ch[, attr]) Paint character ch at (y, x) with attributes attr, moving the line from position x right by one character.

email.message.Message.get_filename()

get_filename(failobj=None) Return the value of the filename parameter of the Content-Disposition header of the message. If the header does not have a filename parameter, this method falls back to looking for the name parameter on the Content-Type header. If neither is found, or the header is missing, then failobj is returned. The returned string will always be unquoted as per email.utils.unquote().

types.MappingProxyType.keys()

keys() Return a new view of the underlying mapping’s keys.

curses.window.vline()

window.vline(ch, n) window.vline(y, x, ch, n) Display a vertical line starting at (y, x) with length n consisting of the character ch.

string.digits

string.digits The string '0123456789'.

email.message.Message.get_unixfrom()

get_unixfrom() Return the message’s envelope header. Defaults to None if the envelope header was never set.

operator.is_not()

operator.is_not(a, b) Return a is not b. Tests object identity.

test.support.can_symlink()

test.support.can_symlink() Return True if the OS supports symbolic links, False otherwise.

ast.NodeVisitor

class ast.NodeVisitor A node visitor base class that walks the abstract syntax tree and calls a visitor function for every node found. This function may return a value which is forwarded by the visit() method. This class is meant to be subclassed, with the subclass adding visitor methods. visit(node) Visit a node. The default implementation calls the method called self.visit_classname where classname is the name of the node class, or generic_visit() if that method doesn’t exist. gener

msilib.Record.ClearData()

Record.ClearData() Set all fields of the record to 0, through MsiRecordClearData().