#8861: remove unused variable.

This commit is contained in:
Georg Brandl 2010-08-02 19:44:48 +00:00
parent 0abcbd7a24
commit 07b90caed4

View file

@ -17,10 +17,9 @@ def wrapper(func, *args, **kwds):
wrapper(). wrapper().
""" """
res = None
try: try:
# Initialize curses # Initialize curses
stdscr=curses.initscr() stdscr = curses.initscr()
# Turn off echoing of keys, and enter cbreak mode, # Turn off echoing of keys, and enter cbreak mode,
# where no buffering is performed on keyboard input # where no buffering is performed on keyboard input