From: Michael W. Hudson Date: Sat, 7 Aug 2004 15:20:15 +0000 (+0000) Subject: Somehow (no idea how!) I missed half of patch #1005008. Sorry about that. X-Git-Tag: v2.4a3~377 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fdd43ef3507d0db65cff4dd8252e35f7b81988f;p=python Somehow (no idea how!) I missed half of patch #1005008. Sorry about that. --- diff --git a/Lib/curses/wrapper.py b/Lib/curses/wrapper.py index 0d004e0302..53352041e9 100644 --- a/Lib/curses/wrapper.py +++ b/Lib/curses/wrapper.py @@ -41,7 +41,7 @@ def wrapper(func, *args, **kwds): except: pass - return func(stdscr, *rest) + return func(stdscr, *args, **kwds) finally: # Set everything back to normal stdscr.keypad(0)