window.clear() Like erase(), but also cause the whole window to be repainted upon next call to refresh()
curses.raw() Enter raw mode. In raw mode, normal line buffering and processing of interrupt, quit, suspend, and flow control
time.process_time() Return the value (in fractional seconds) of the sum of the system and user CPU time of the current process
window.mvwin(new_y, new_x) Move the window so its upper-left corner is at (new_y, new_x).
window.border([ls[, rs[, ts[, bs[, tl[, tr[, bl[, br]]]]]]]]) Draw a border around the edges of the window. Each parameter specifies
os.listdir(path='.') Return a list containing the names of the entries in the directory given by path. The list is
os.posix_fadvise(fd, offset, len, advice) Announces an intention to access data in a specific pattern thus allowing the kernel
os.set_blocking(fd, blocking) Set the blocking mode of the specified file descriptor. Set the O_NONBLOCK flag if
os.unlink(path, *, dir_fd=None) Remove (delete) the file path. This function is semantically identical to remove();
read([size]) Read and return size bytes, or if size is not given or negative, until EOF or if the read call
Page 13 of 67