summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-07-02 19:13:11 (GMT)
committerBrett Cannon <brett@python.org>2012-07-02 19:13:11 (GMT)
commit98979b85e7fa164b365635b99b83d91f30773850 (patch)
tree71a1350c1fa9c1129c4872401e925bb4b5a38c25 /Misc/NEWS
parent8e2f5564b3cce162aa1427dcd26092f24f418418 (diff)
downloadcpython-98979b85e7fa164b365635b99b83d91f30773850.zip
cpython-98979b85e7fa164b365635b99b83d91f30773850.tar.gz
cpython-98979b85e7fa164b365635b99b83d91f30773850.tar.bz2
Issue #15166: Re-implement imp.get_tag() using sys.implementation.
Also eliminates some C code in Python/import.c as well. Patch by Eric Snow with verification by comparing against another patch from Jeff Knupp.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8c4aad2..cba8c41 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,8 @@ Core and Builtins
Library
-------
+- Issue #15166: Implement imp.get_tag() using sys.implementation.cache_tag.
+
- Issue #15210: Catch KeyError when imprortlib.__init__ can't find
_frozen_importlib in sys.modules, not ImportError.