diff options
author | Brett Cannon <brett@python.org> | 2012-07-02 18:53:10 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-07-02 18:53:10 (GMT) |
commit | 8e2f5564b3cce162aa1427dcd26092f24f418418 (patch) | |
tree | 383e0f0f2e286c85af805422a71e48d798d07ffe /Misc/NEWS | |
parent | 1e331560eea62c78ec189f2b72b59864ee315ddc (diff) | |
download | cpython-8e2f5564b3cce162aa1427dcd26092f24f418418.zip cpython-8e2f5564b3cce162aa1427dcd26092f24f418418.tar.gz cpython-8e2f5564b3cce162aa1427dcd26092f24f418418.tar.bz2 |
Issue #15210: If _frozen_importlib is not found in sys.modules by
importlib.__init__, then catch the KeyError raised, not ImportError.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -17,6 +17,9 @@ Core and Builtins Library ------- +- Issue #15210: Catch KeyError when imprortlib.__init__ can't find + _frozen_importlib in sys.modules, not ImportError. + - Issue #15030: importlib.abc.PyPycLoader now supports the new source size header field in .pyc files. |