os.get_terminal_size(fd=STDOUT_FILENO) Return the size of the terminal window as (columns, lines), tuple of type
os.spawnl(mode, path, ...) os.spawnle(mode, path, ..., env) os.spawnlp(mode, file, ...)
Panel.replace(win) Change the window associated with the panel to the window win.
platform.python_branch() Returns a string identifying the Python implementation SCM branch.
os.pathsep The character conventionally used by the operating system to separate search path components (as in PATH)
class ctypes.c_bool Represent the C bool datatype (more accurately, _Bool from C99). Its value can
os.isatty(fd) Return True if the file descriptor fd is open and connected to a tty(-like) device, else
curses.doupdate() Update the physical screen. The curses library keeps two data structures, one representing the current physical
window.deleteln() Delete the line under the cursor. All following lines are moved up by one line.
ctypes.memset(dst, c, count) Same as the standard C memset library function: fills the memory block at address dst
Page 8 of 67