summaryrefslogtreecommitdiff
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 81ad4f9245..21621c5ee4 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -140,6 +140,17 @@ Deprecated
``0x03050400`` and ``0x03060000`` (not including) or ``0x03060100`` or
higher. (Contributed by Serhiy Storchaka in :issue:`27867`.)
+- Methods
+ :meth:`MetaPathFinder.find_module() <importlib.abc.MetaPathFinder.find_module>`
+ (replaced by
+ :meth:`MetaPathFinder.find_spec() <importlib.abc.MetaPathFinder.find_spec>`
+ ) and
+ :meth:`PathEntryFinder.find_loader() <importlib.abc.PathEntryFinder.find_loader>`
+ (replaced by
+ :meth:`PathEntryFinder.find_spec() <importlib.abc.PathEntryFinder.find_spec>`)
+ both deprecated in Python 3.4 now emit :exc:`DeprecationWarning`. (Contributed
+ by Matthias Bussonnier in :issue:`29576`)
+
Removed
=======