curses.window.bkgd()

window.bkgd(ch[, attr]) Set the background property of the window to the character ch, with attributes attr

2016-10-07 17:30:20
curses.flushinp()

curses.flushinp() Flush all input buffers. This throws away any typeahead that has been typed by the user and has not yet been

2016-10-07 17:30:00
io.BufferedIOBase.read1()

read1(size=-1) Read and return up to size bytes, with at most one call to the underlying raw stream’s read()

2016-10-07 17:35:13
ctypes.ArgumentError

exception ctypes.ArgumentError This exception is raised when a foreign function call cannot convert one of the passed arguments

2016-10-07 17:29:31
curses.window.clearok()

window.clearok(yes) If yes is 1, the next call to refresh() will clear the window completely.

2016-10-07 17:30:22
io.FileIO.name

name The file name. This is the file descriptor of the file when no name is given in the constructor.

2016-10-07 17:35:17
time.monotonic()

time.monotonic() Return the value (in fractional seconds) of a monotonic clock, i.e. a clock that cannot go backwards. The clock

2016-10-07 17:44:42
curses.ascii.ascii()

curses.ascii.ascii(c) Return the ASCII value corresponding to the low 7 bits of c.

2016-10-07 17:29:54
os.sched_setaffinity()

os.sched_setaffinity(pid, mask) Restrict the process with PID pid (or the current process if zero) to a set of CPUs

2016-10-07 17:39:37
argparse.Action

class argparse.Action(option_strings, dest, nargs=None, const=None, default=None, type=None, choices=None, required=False, help=None, metavar=None)

2016-10-07 17:26:10