summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMatthias Bussonnier <bussonniermatthias@gmail.com>2017-02-16 02:00:32 (GMT)
committerBrett Cannon <brettcannon@users.noreply.github.com>2017-02-16 02:00:32 (GMT)
commit1d4601c2c6952d03fc4dda2b041be9aa8713c0bc (patch)
tree0a2192efa8f0275e65a84ebef34fd060e72089c7 /Misc
parent72dccde884d89586b0cafd990675b7e21720a81f (diff)
downloadcpython-1d4601c2c6952d03fc4dda2b041be9aa8713c0bc.zip
cpython-1d4601c2c6952d03fc4dda2b041be9aa8713c0bc.tar.gz
cpython-1d4601c2c6952d03fc4dda2b041be9aa8713c0bc.tar.bz2
bpo-29576: add explicit deprecation for importlib.abc.find_loader() and find_module() (GH-32)
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 51055ef..1422627 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -229,6 +229,9 @@ Extension Modules
Library
-------
+- bpo-29576: Improve some deprecations in importlib. Some deprecated methods
+ now emit DeprecationWarnings and have better descriptive messages.
+
- bpo-29534: Fixed different behaviour of Decimal.from_float()
for _decimal and _pydecimal. Thanks Andrew Nester.