commit | 07b90caed4c45e6f17ac8952fb72f548669fed3d | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Aug 02 19:44:48 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Aug 02 19:44:48 2010 +0000 |
tree | 97aaf7314aa86af7786c5db561a9d357d7d29833 | |
parent | 0abcbd7a243745ee4efc0164c920bde07ffb4f9a [diff] |
#8861: remove unused variable.
diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py index 9f1d867..3cdaa82 100644 --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py
@@ -17,10 +17,9 @@ wrapper(). """ - 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