summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGarvit Khatri <garvit.khatri@zomato.com>2017-05-24 22:19:50 (GMT)
committerBrett Cannon <brettcannon@users.noreply.github.com>2017-05-24 22:19:50 (GMT)
commit94987826e89e8a89c20f081e18be33fc840e6203 (patch)
tree2520853181960af114e49c6635ee071b03e2af3c /Misc
parent3480ef9dd3177be8c0d71a74853dca6e5b11fbe1 (diff)
downloadcpython-94987826e89e8a89c20f081e18be33fc840e6203.zip
cpython-94987826e89e8a89c20f081e18be33fc840e6203.tar.gz
cpython-94987826e89e8a89c20f081e18be33fc840e6203.tar.bz2
bpo-29851: Have importlib.reload() raise ImportError if the module's spec is not found (GH-972)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b72c40c..bee9eb0 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -774,6 +774,7 @@ Robert Kern
Jim Kerr
Magnus Kessler
Lawrence Kesteloot
+Garvit Khatri
Vivek Khera
Dhiru Kholia
Akshit Khurana
diff --git a/Misc/NEWS b/Misc/NEWS
index 6960238..3efbb17 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -604,6 +604,9 @@ Library
- bpo-10379: locale.format_string now supports the 'monetary' keyword argument,
and locale.format is deprecated.
+- bpo-29851: importlib.reload() now raises ModuleNotFoundError if the
+ module lacks a spec.
+
- Issue #28556: Various updates to typing module: typing.Counter, typing.ChainMap,
improved ABC caching, etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi,
Manuel Krebber, and Ɓukasz Langa.