Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Doc/whatsnew/3.15.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2114,6 +2114,17 @@ http.server
(Contributed by Bénédikt Tran in :gh:`133810`.)


importlib
---------

* The ``load_module()`` methods of :class:`~importlib.abc.Loader` and its
subclasses is removed.
The import system will no longer call it when defined on custom subclasses.
The method has been deprecated in favor of
:meth:`~importlib.abc.Loader.exec_module` since Python 3.4.
(Contributed by Brett Cannon in :gh:`97850`.)


importlib.resources
-------------------

Expand Down
Loading