Message2242

Author nfranzen
Recipients
Date 2002-07-17.20:11:06
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
I experienced a name clash in compiling some Python
code dependent upon a local (to me) module named
"System.py"


The minimal fix is changing a single line in

tools/jythonc/PythonModule.py from

401:      code.append(jast.InvokeStatic("System",
"arraycopy", args))

to 
401:    
code.append(jast.InvokeStatic("java.lang.System",
"arraycopy", args))


History
Date User Action Args
2008-02-20 17:18:18adminlinkissue583040 messages
2008-02-20 17:18:18admincreate