[Python-checkins] python/dist/src/Lib/compiler transformer.py,1.37,1.38
rhettinger@users.sourceforge.net
rhettinger@users.sourceforge.net
Sun, 06 Apr 2003 01:01:21 -0800
Update of /cvsroot/python/python/dist/src/Lib/compiler
In directory sc8-pr-cvs1:/tmp/cvs-serv1577/Lib/compiler
Modified Files:
transformer.py
Log Message:
SF patch #701494: more apply removals
Index: transformer.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/compiler/transformer.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** transformer.py 7 Mar 2003 17:30:47 -0000 1.37
--- transformer.py 6 Apr 2003 09:00:45 -0000 1.38
***************
*** 73,77 ****
if nodes.has_key(kind):
try:
! return apply(nodes[kind], args[1:])
except TypeError:
print nodes[kind], len(args), args
--- 73,77 ----
if nodes.has_key(kind):
try:
! return nodes[kind](*args[1:])
except TypeError:
print nodes[kind], len(args), args