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

email.message.Message.set_unixfrom()

set_unixfrom(unixfrom) Set the message’s envelope header to unixfrom, which should be a string.

msilib.Record.ClearData()

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

ctypes._CData._b_needsfree_

_b_needsfree_ This read-only variable is true when the ctypes data instance has allocated the memory block itself, false otherwise.

multiprocessing.pool.Pool.starmap()

starmap(func, iterable[, chunksize]) Like map() except that the elements of the iterable are expected to be iterables that are unpacked as arguments. Hence an iterable of [(1,2), (3, 4)] results in [func(1,2), func(3,4)]. New in version 3.3.