diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-07 21:02:22 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-07 21:02:22 (GMT) |
commit | 2ea17faf4b1392498208a395d455de25648a4d0a (patch) | |
tree | ab0bdb8182773469f07e040a169b2247f52aa12b /Lib/curses | |
parent | 04f39aa859764a9838240d28d6ac3a844c8b6aed (diff) | |
download | cpython-2ea17faf4b1392498208a395d455de25648a4d0a.zip cpython-2ea17faf4b1392498208a395d455de25648a4d0a.tar.gz cpython-2ea17faf4b1392498208a395d455de25648a4d0a.tar.bz2 |
fix inconsistent use of tabs and spaces
convert semicolons to newlines
Diffstat (limited to 'Lib/curses')
-rw-r--r-- | Lib/curses/wrapper.py | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py index cd30086..e7e7bb6 100644 --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -20,11 +20,12 @@ def wrapper(func, *rest): res = None try: # Initialize curses - stdscr=curses.initscr() + stdscr=curses.initscr() # Turn off echoing of keys, and enter cbreak mode, # where no buffering is performed on keyboard input - curses.noecho() ; curses.cbreak() + curses.noecho() + curses.cbreak() # In keypad mode, escape sequences for special keys # (like the cursor keys) will be interpreted and @@ -35,17 +36,19 @@ def wrapper(func, *rest): except: # In the event of an error, restore the terminal # to a sane state. - stdscr.keypad(0) - curses.echo() ; curses.nocbreak() - curses.endwin() + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() # Pass the exception upwards (exc_type, exc_value, exc_traceback) = sys.exc_info() raise exc_type, exc_value, exc_traceback else: # Set everything back to normal - stdscr.keypad(0) - curses.echo() ; curses.nocbreak() - curses.endwin() # Terminate curses + stdscr.keypad(0) + curses.echo() + curses.nocbreak() + curses.endwin() # Terminate curses return res |