mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
#8861: remove unused variable.
This commit is contained in:
parent
0abcbd7a24
commit
07b90caed4
1 changed files with 1 additions and 2 deletions
|
@ -17,10 +17,9 @@ def wrapper(func, *args, **kwds):
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue