summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-07-02 18:53:10 (GMT)
committerBrett Cannon <brett@python.org>2012-07-02 18:53:10 (GMT)
commit8e2f5564b3cce162aa1427dcd26092f24f418418 (patch)
tree383e0f0f2e286c85af805422a71e48d798d07ffe /Misc/NEWS
parent1e331560eea62c78ec189f2b72b59864ee315ddc (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b318e50..8c4aad2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.