curses.resizeterm()

curses.resizeterm(nlines, ncols) Resize the standard and current windows to the specified dimensions, and adjusts other bookkeeping data used by the curses library that record the window dimensions (in particular the SIGWINCH handler).

curses.reset_shell_mode()

curses.reset_shell_mode() Restore the terminal to “shell” mode, as previously saved by def_shell_mode().

curses.reset_prog_mode()

curses.reset_prog_mode() Restore the terminal to “program” mode, as previously saved by def_prog_mode().

curses.resetty()

curses.resetty() Restore the state of the terminal modes to what it was at the last call to savetty().

curses.raw()

curses.raw() Enter raw mode. In raw mode, normal line buffering and processing of interrupt, quit, suspend, and flow control keys are turned off; characters are presented to curses input functions one by one.

curses.qiflush()

curses.qiflush([flag]) If flag is False, the effect is the same as calling noqiflush(). If flag is True, or no argument is provided, the queues will be flushed when these control characters are read.

curses.putp()

curses.putp(string) Equivalent to tputs(str, 1, putchar); emit the value of a specified terminfo capability for the current terminal. Note that the output of putp() always goes to standard output.

curses.panel.update_panels()

curses.panel.update_panels() Updates the virtual screen after changes in the panel stack. This does not call curses.doupdate(), so you’ll have to do this yourself.

curses.panel.top_panel()

curses.panel.top_panel() Returns the top panel in the panel stack.

curses.panel.Panel.window()

Panel.window() Returns the window object associated with the panel.