Message873

Author leouserz
Recipients
Date 2007-01-15.15:17:25
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The problem appears to be that "imp" in its import_name method is setting the name of the module to Py.None if it can't find it the first time.  This causes the system to block the import from that point onward:
        if (topMod == Py.None || topMod == null) {

            if (topMod == null) {

                modules.__setitem__(parentNameBuffer.toString().intern(),

                        Py.None);

            }

            parentNameBuffer = new StringBuffer("");

            // could throw ImportError

            topMod = import_first(firstName, parentNameBuffer, name, fromlist);

        }


The question is, if this changed, what is going to be broken...
History
Date User Action Args
2008-02-20 17:17:16adminlinkissue837308 messages
2008-02-20 17:17:16admincreate