curses.window.clear()
  • References/Python/Python/Operating System

window.clear() Like erase(), but also cause the whole window to be repainted upon next call to refresh()

2025-01-10 15:47:30
curses.raw()
  • References/Python/Python/Operating System

curses.raw() Enter raw mode. In raw mode, normal line buffering and processing of interrupt, quit, suspend, and flow control

2025-01-10 15:47:30
time.process_time()
  • References/Python/Python/Operating System

time.process_time() Return the value (in fractional seconds) of the sum of the system and user CPU time of the current process

2025-01-10 15:47:30
curses.window.mvwin()
  • References/Python/Python/Operating System

window.mvwin(new_y, new_x) Move the window so its upper-left corner is at (new_y, new_x).

2025-01-10 15:47:30
curses.window.border()
  • References/Python/Python/Operating System

window.border([ls[, rs[, ts[, bs[, tl[, tr[, bl[, br]]]]]]]]) Draw a border around the edges of the window. Each parameter specifies

2025-01-10 15:47:30
os.listdir()
  • References/Python/Python/Operating System

os.listdir(path='.') Return a list containing the names of the entries in the directory given by path. The list is

2025-01-10 15:47:30
os.posix_fadvise()
  • References/Python/Python/Operating System

os.posix_fadvise(fd, offset, len, advice) Announces an intention to access data in a specific pattern thus allowing the kernel

2025-01-10 15:47:30
os.set_blocking()
  • References/Python/Python/Operating System

os.set_blocking(fd, blocking) Set the blocking mode of the specified file descriptor. Set the O_NONBLOCK flag if

2025-01-10 15:47:30
os.unlink()
  • References/Python/Python/Operating System

os.unlink(path, *, dir_fd=None) Remove (delete) the file path. This function is semantically identical to remove();

2025-01-10 15:47:30
io.BufferedReader.read()
  • References/Python/Python/Operating System

read([size]) Read and return size bytes, or if size is not given or negative, until EOF or if the read call

2025-01-10 15:47:30