Issue1871739

classification
Title: fix for Import Error statement to match CPython
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pjenvey, tristanlk
Priority: normal Keywords: patch

Created on 2008-01-15.05:16:35 by tristanlk, last changed 2008-01-15.05:24:02 by pjenvey.

Messages
msg2987 (view) Author: tristan (tristanlk) Date: 2008-01-15.05:16:35
all 3 instances of the statement
throw Py.ImportError("no module named " + name);
in imp.java need to have the n in no capitalised to match CPython
thus should read:
throw Py.ImportError("No module named " + name);
msg2988 (view) Author: Philip Jenvey (pjenvey) Date: 2008-01-15.05:24:02
fixed in r4033, thanks
History
Date User Action Args
2008-01-15 05:16:35tristanlkcreate