diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-31 22:03:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 22:03:02 (GMT) |
commit | a92c60c99bab716d1d08bccb92dcc0fe6ee93abe (patch) | |
tree | 1bf031107f07ab6fc6761e420481b1f3f0bd745e | |
parent | bc42d6c6042d33a165b92ba61326a3e6aa389cb9 (diff) | |
download | cpython-a92c60c99bab716d1d08bccb92dcc0fe6ee93abe.zip cpython-a92c60c99bab716d1d08bccb92dcc0fe6ee93abe.tar.gz cpython-a92c60c99bab716d1d08bccb92dcc0fe6ee93abe.tar.bz2 |
[3.12] gh-97850: Note in py312 whatsnew that `importlib.util.set_loader` and `importlib.util.module_for_loader` have been removed (GH-108719) (#108723)
gh-97850: Note in py312 whatsnew that `importlib.util.set_loader` and `importlib.util.module_for_loader` have been removed (GH-108719)
Note in py312 whatsnew that `importlib.util.set_loader` and `importlib.util.module_for_loader` have been removed
(cherry picked from commit 013a99a47b3299f48cf7f95aa451a116441b029c)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-rw-r--r-- | Doc/whatsnew/3.12.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index d0326e0..f76f9c4 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -1312,8 +1312,9 @@ Removed * References to, and support for :meth:`!module_repr()` has been removed. (Contributed by Barry Warsaw in :gh:`97850`.) - * ``importlib.util.set_package`` has been removed. (Contributed by Brett - Cannon in :gh:`65961`.) + * ``importlib.util.set_package``, ``importlib.util.set_loader`` and + ``importlib.util.module_for_loader`` have all been removed. (Contributed by + Brett Cannon and Nikita Sobolev in :gh:`65961` and :gh:`97850`.) * Support for ``find_loader()`` and ``find_module()`` APIs have been removed. (Contributed by Barry Warsaw in :gh:`98040`.) |