diff options
Diffstat (limited to 'Doc/howto/curses.rst')
-rw-r--r-- | Doc/howto/curses.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/curses.rst b/Doc/howto/curses.rst index e16d07a..6f53708 100644 --- a/Doc/howto/curses.rst +++ b/Doc/howto/curses.rst @@ -377,7 +377,7 @@ value returned to constants such as :const:`curses.KEY_PPAGE`, :const:`curses.KEY_HOME`, or :const:`curses.KEY_LEFT`. Usually the main loop of your program will look something like this:: - while 1: + while True: c = stdscr.getch() if c == ord('p'): PrintDocument() elif c == ord('q'): break # Exit the while() |