curses.window.redrawwin()

window.redrawwin() Touch the entire window, causing it to be completely redrawn on the next refresh() call.

2016-10-07 17:30:34
curses.window.standend()

window.standend() Turn off the standout attribute. On some terminals this has the side effect of turning off all attributes

2016-10-07 17:30:35
curses.panel.Panel.userptr()

Panel.userptr() Returns the user pointer for the panel. This might be any Python object.

2016-10-07 17:30:10
os.lchmod()

os.lchmod(path, mode) Change the mode of path to the numeric mode. If path is a symlink, this affects the

2016-10-07 17:39:12
curses.window.getmaxyx()

window.getmaxyx() Return a tuple (y, x) of the height and width of the window.

2016-10-07 17:30:27
io.TextIOBase.seek()

seek(offset[, whence]) Change the stream position to the given offset. Behaviour depends on the whence parameter

2016-10-07 17:35:24
os.tcsetpgrp()

os.tcsetpgrp(fd, pg) Set the process group associated with the terminal given by fd (an open file descriptor as returned

2016-10-07 17:40:06
argparse.ArgumentParser.print_help()

ArgumentParser.print_help(file=None) Print a help message, including the program usage and information about the arguments registered

2016-10-07 17:26:13
os.fpathconf()

os.fpathconf(fd, name) Return system configuration information relevant to an open file. name specifies the configuration

2016-10-07 17:38:57
curses.window.enclose()

window.enclose(y, x) Test whether the given pair of screen-relative character-cell coordinates are enclosed by the given window

2016-10-07 17:30:25