curses.window.timeout()

window.timeout(delay) Set blocking or non-blocking read behavior for the window. If delay is negative, blocking read

2016-10-07 17:30:37
os.getppid()

os.getppid() Return the parent’s process id. When the parent process has exited, on Unix the id returned is the one of the init

2016-10-07 17:39:05
os.makedirs()

os.makedirs(name, mode=0o777, exist_ok=False) Recursive directory creation function. Like mkdir(), but makes all

2016-10-07 17:39:16
ctypes.addressof()

ctypes.addressof(obj) Returns the address of the memory buffer as integer. obj must be an instance of a ctypes type

2016-10-07 17:29:31
os.stat_result.st_blksize

st_blksize “Preferred” blocksize for efficient file system I/O. Writing to a file in smaller chunks may cause an inefficient

2016-10-07 17:39:53
os.confstr()

os.confstr(name) Return string-valued system configuration values. name specifies the configuration value to retrieve;

2016-10-07 17:38:42
os.WTERMSIG()

os.WTERMSIG(status) Return the signal which caused the process to exit. Availability: Unix.

2016-10-07 17:40:17
curses.window.attron()

window.attron(attr) Add attribute attr from the “background” set applied to all writes to the current window.

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

curses.update_lines_cols() Update LINES and COLS. Useful for detecting manual screen resize.

2016-10-07 17:30:18
curses.panel.new_panel()

curses.panel.new_panel(win) Returns a panel object, associating it with the given window win. Be aware that you need

2016-10-07 17:30:09