[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
- Previous message: [Python-checkins] python/dist/src/Lib/compiler transformer.py,1.37,1.38
- Next message: [Python-checkins] python/dist/src/Lib/lib-tk Canvas.py,1.18,1.19 Dialog.py,1.5,1.6 ScrolledText.py,1.12,1.13 Tix.py,1.15,1.16 Tkinter.py,1.170,1.171 tkColorChooser.py,1.5,1.6 tkCommonDialog.py,1.6,1.7 tkFont.py,1.3,1.4 tkMessageBox.py,1.1,1.2 tkSimpleDialog.py,1.8,1.9 turtle.py,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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
- Previous message: [Python-checkins] python/dist/src/Lib/compiler transformer.py,1.37,1.38
- Next message: [Python-checkins] python/dist/src/Lib/lib-tk Canvas.py,1.18,1.19 Dialog.py,1.5,1.6 ScrolledText.py,1.12,1.13 Tix.py,1.15,1.16 Tkinter.py,1.170,1.171 tkColorChooser.py,1.5,1.6 tkCommonDialog.py,1.6,1.7 tkFont.py,1.3,1.4 tkMessageBox.py,1.1,1.2 tkSimpleDialog.py,1.8,1.9 turtle.py,1.9,1.10
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]