This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients brett.cannon, eric.snow, georg.brandl, pitrou, sfeltman
Date 2012-08-17.06:01:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345183303.01.0.117761664839.issue15715@psf.upfronthosting.co.za>
In-reply-to
Content
The following seems to indicate that an ImportError should be raised as expected.  I'm guessing that somewhere along the line the exception gets silently eaten.

------------------

(3.2) Python/import.c:ensure_fromlist() [1]

            submod = import_submodule(mod, subname, buf);
            Py_DECREF(item8);
            Py_XDECREF(submod);
            if (submod == NULL) {
                Py_DECREF(item);
                return 0;
            }

[1] http://hg.python.org/cpython/file/3.2/Python/import.c#l2875
History
Date User Action Args
2012-08-17 06:01:43eric.snowsetrecipients: + eric.snow, brett.cannon, georg.brandl, pitrou, sfeltman
2012-08-17 06:01:43eric.snowsetmessageid: <1345183303.01.0.117761664839.issue15715@psf.upfronthosting.co.za>
2012-08-17 06:01:42eric.snowlinkissue15715 messages
2012-08-17 06:01:42eric.snowcreate