summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2011-12-15 04:23:46 (GMT)
committerMeador Inge <meadori@gmail.com>2011-12-15 04:23:46 (GMT)
commit416f12ddb3b7d780bb75563414b88b32c0cf7e67 (patch)
treecbe4c2d385714638e0bda1c2d60289dc3182f5a4 /Misc
parent061c0289af979213984046c0f7570192063ab319 (diff)
downloadcpython-416f12ddb3b7d780bb75563414b88b32c0cf7e67.zip
cpython-416f12ddb3b7d780bb75563414b88b32c0cf7e67.tar.gz
cpython-416f12ddb3b7d780bb75563414b88b32c0cf7e67.tar.bz2
Issue #13591: import_module potentially imports a module twice.
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 c996499..15c07f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1868,6 +1868,9 @@ Core and Builtins
Library
-------
+- Issue #13591: A bug in importlib has been fixed that caused import_module
+ to load a module twice.
+
- logging: added "handler of last resort". See http://bit.ly/last-resort-handler
- test.support: Added TestHandler and Matcher classes for better support of