Issue583040

classification
Title: java.lang.System in jythonc
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bckfnn, nfranzen
Priority: normal Keywords: patch

Created on 2002-07-17.20:11:06 by nfranzen, last changed 2002-10-29.14:24:41 by bckfnn.

Messages
msg2242 (view) Author: Nathan Franzen (nfranzen) Date: 2002-07-17.20:11:06
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))


msg2243 (view) Author: Finn Bock (bckfnn) Date: 2002-10-29.14:24:41
Logged In: YES 
user_id=4201

Applied to PythonModule.py: 2.21;
History
Date User Action Args
2002-07-17 20:11:06nfranzencreate