summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2016-09-08 18:12:31 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2016-09-08 18:12:31 (GMT)
commitf3fd06a2e4d42cf8e4e82a5b6cbff1e5a515aff3 (patch)
tree41daf3438e6f223089206197f1dba3f843076be3 /Misc
parente58571b7eaa3f282d7d29f3aead1cc8220bec473 (diff)
downloadcpython-f3fd06a2e4d42cf8e4e82a5b6cbff1e5a515aff3.zip
cpython-f3fd06a2e4d42cf8e4e82a5b6cbff1e5a515aff3.tar.gz
cpython-f3fd06a2e4d42cf8e4e82a5b6cbff1e5a515aff3.tar.bz2
Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 933a5c1..97c4fe4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6968,6 +6968,9 @@ Core and Builtins
- Issue #19369: Optimized the usage of __length_hint__().
+- Issue #28026: Raise ImportError when exec_module() exists but
+ create_module() is missing.
+
- Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the
Python executable and not removed by the linker's optimizer.