Issue #5622: Fix curses.wrapper to raise correct exception if curses
initialization fails.
This commit is contained in:
parent
ee145ecc5f
commit
9d4836e731
|
@ -43,7 +43,8 @@ def wrapper(func, *args, **kwds):
|
||||||
return func(stdscr, *args, **kwds)
|
return func(stdscr, *args, **kwds)
|
||||||
finally:
|
finally:
|
||||||
# Set everything back to normal
|
# Set everything back to normal
|
||||||
stdscr.keypad(0)
|
if 'stdscr' in locals():
|
||||||
curses.echo()
|
stdscr.keypad(0)
|
||||||
curses.nocbreak()
|
curses.echo()
|
||||||
curses.endwin()
|
curses.nocbreak()
|
||||||
|
curses.endwin()
|
||||||
|
|
|
@ -40,6 +40,9 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #5622: Fix curses.wrapper to raise correct exception if curses
|
||||||
|
initialization fails.
|
||||||
|
|
||||||
- Issue #11391: Writing to a mmap object created with
|
- Issue #11391: Writing to a mmap object created with
|
||||||
``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a
|
``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a
|
||||||
TypeError. Patch by Charles-François Natali.
|
TypeError. Patch by Charles-François Natali.
|
||||||
|
|
Loading…
Reference in New Issue