mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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().
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue