Message168435
| 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:43 | eric.snow | set | recipients:
+ eric.snow, brett.cannon, georg.brandl, pitrou, sfeltman |
| 2012年08月17日 06:01:43 | eric.snow | set | messageid: <1345183303.01.0.117761664839.issue15715@psf.upfronthosting.co.za> |
| 2012年08月17日 06:01:42 | eric.snow | link | issue15715 messages |
| 2012年08月17日 06:01:42 | eric.snow | create |
|