Update of /cvsroot/jython/jython/Tools/jythonc
In directory usw-pr-cvs1:/tmp/cvs-serv13965
Modified Files:
PythonModule.py
Log Message:
Apply patch "[ 583040 ] java.lang.System in jythonc".
Index: PythonModule.py
===================================================================
RCS file: /cvsroot/jython/jython/Tools/jythonc/PythonModule.py,v
retrieving revision 2.20
retrieving revision 2.21
diff -C2 -d -r2.20 -r2.21
*** PythonModule.py 30 May 2002 16:20:13 -0000 2.20
--- PythonModule.py 29 Oct 2002 14:22:44 -0000 2.21
***************
*** 401,405 ****
jast.IntegerConstant(1),
jast.Identifier('args.length')]
! code.append(jast.InvokeStatic("System", "arraycopy", args))
args = [jast.GetStaticAttribute(self.getclassname(
--- 401,406 ----
jast.IntegerConstant(1),
jast.Identifier('args.length')]
! code.append(jast.InvokeStatic("java.lang.System", "arraycopy",
! args))
args = [jast.GetStaticAttribute(self.getclassname(
|