diff options
author | Brett Cannon <brett@python.org> | 2012-07-10 14:05:00 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-07-10 14:05:00 (GMT) |
commit | 461c8131648e26d14e4840d11c3cbd1da99cd04f (patch) | |
tree | 24b3f6c5970ff0697086ed71f2493602d8f0c5cf /Misc/NEWS | |
parent | c4618e33b2ef1c6f1cb2d8d3c2e23dfcca9f5f44 (diff) | |
download | cpython-461c8131648e26d14e4840d11c3cbd1da99cd04f.zip cpython-461c8131648e26d14e4840d11c3cbd1da99cd04f.tar.gz cpython-461c8131648e26d14e4840d11c3cbd1da99cd04f.tar.bz2 |
Issue #15111: When a module was imported using a 'from import'
statement (e.g. ``from distutils import msvc9compiler``) that triggers
an ImportError of its own (e.g. the non-existence of winreg), let that
exception propagate instead of raising a generic ImportError for the
module being requested (e.g. msvc9compiler).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3.0 Beta 2? Core and Builtins ----------------- +- Issue #15111: When a module imported using 'from import' has an ImportError + inside itself, don't mask that fact behind a generic ImportError for the + module itself. + - Issue #15293: Add GC support to the AST base node type. - Issue #15291: Fix a memory leak where AST nodes where not properly |