diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-13 23:33:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 23:33:05 (GMT) |
commit | a390bb6d66027517498e75b6b91a91be5f136d28 (patch) | |
tree | 8c5b5ff4fe87b6ee4798a35b7e2ceda0eeb98c3b /Misc | |
parent | 06c26f4d2909eae196ac81c9ed9b41e747e42685 (diff) | |
download | cpython-a390bb6d66027517498e75b6b91a91be5f136d28.zip cpython-a390bb6d66027517498e75b6b91a91be5f136d28.tar.gz cpython-a390bb6d66027517498e75b6b91a91be5f136d28.tar.bz2 |
bpo-42135 Correct version slated for importlib.find_loader removal (GH-28312) (GH-28321)
importlib.find_loader should also be slated for 3.12 like the others in GH-25169 and as documented in https://docs.python.org/3.11/whatsnew/3.10.htmlGH-deprecated.
(cherry picked from commit 9f93018b69d72cb48d3444554261ae3b0ea00c93)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-09-13-19-32-58.bpo-42135.1ZAHqR.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-09-13-19-32-58.bpo-42135.1ZAHqR.rst b/Misc/NEWS.d/next/Library/2021-09-13-19-32-58.bpo-42135.1ZAHqR.rst new file mode 100644 index 0000000..983b46e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-09-13-19-32-58.bpo-42135.1ZAHqR.rst @@ -0,0 +1,3 @@ +Fix typo: ``importlib.find_loader`` is really slated for removal in Python 3.12 not 3.10, like the others in GH-25169. + +Patch by Hugo van Kemenade. |