diff options
author | Garvit Khatri <garvit.khatri@zomato.com> | 2017-05-24 22:19:50 (GMT) |
---|---|---|
committer | Brett Cannon <brettcannon@users.noreply.github.com> | 2017-05-24 22:19:50 (GMT) |
commit | 94987826e89e8a89c20f081e18be33fc840e6203 (patch) | |
tree | 2520853181960af114e49c6635ee071b03e2af3c /Misc | |
parent | 3480ef9dd3177be8c0d71a74853dca6e5b11fbe1 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -774,6 +774,7 @@ Robert Kern Jim Kerr Magnus Kessler Lawrence Kesteloot +Garvit Khatri Vivek Khera Dhiru Kholia Akshit Khurana @@ -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. |