diff options
author | Brian Curtin <brian@python.org> | 2012-04-16 05:10:17 (GMT) |
---|---|---|
committer | Brian Curtin <brian@python.org> | 2012-04-16 05:10:17 (GMT) |
commit | b206a80dab519256a348e9800c4e52659d948359 (patch) | |
tree | 7e26ffa873c4937b70d713f9f7d76a6a0b0920c4 /Misc | |
parent | 15439817bf77a6e3e68f7101fbe9723468613aff (diff) | |
download | cpython-b206a80dab519256a348e9800c4e52659d948359.zip cpython-b206a80dab519256a348e9800c4e52659d948359.tar.gz cpython-b206a80dab519256a348e9800c4e52659d948359.tar.bz2 |
Fix #10854. Make use of the new path and name attributes on ImportError
for extension modules on Windows.
Diffstat (limited to 'Misc')
-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 Alpha 3? Core and Builtins ----------------- +- Issue #10854: The ImportError raised when an extension module on Windows + fails to import now uses the new path and name attributes from + Issue #1559549. + - Issue #14582: Import directly returns the module as returned by a loader when possible instead of fetching it from sys.modules. |