[Python-checkins] python/dist/src/Lib/curses wrapper.py,1.6,1.7

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sun, 06 Apr 2003 01:01:23 -0800


Update of /cvsroot/python/python/dist/src/Lib/curses
In directory sc8-pr-cvs1:/tmp/cvs-serv1577/Lib/curses

Modified Files:
	wrapper.py 
Log Message:
SF patch #701494:  more apply removals

Index: wrapper.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/curses/wrapper.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** wrapper.py	29 Sep 2002 00:25:51 -0000	1.6
--- wrapper.py	6 Apr 2003 09:00:47 -0000	1.7
***************
*** 42,46 ****
              pass
  
!         res = apply(func, (stdscr,) + rest)
      except:
          # In the event of an error, restore the terminal
--- 42,46 ----
              pass
  
!         res = func(stdscr, *rest)
      except:
          # In the event of an error, restore the terminal