diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-27 12:13:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 12:13:01 (GMT) |
commit | 49e5740135670e04ae6da7e6f52dbe380655e0f1 (patch) | |
tree | 47423e05c4f054ac6c6f1e7b42986ddb65b5b7d9 /Doc | |
parent | c7d2b2b646f5abdbec501f63ab9b719b3db70a1f (diff) | |
download | cpython-49e5740135670e04ae6da7e6f52dbe380655e0f1.zip cpython-49e5740135670e04ae6da7e6f52dbe380655e0f1.tar.gz cpython-49e5740135670e04ae6da7e6f52dbe380655e0f1.tar.bz2 |
[3.13] gh-121027: Add a future warning in functools.partial.__get__ (GH-121086) (#121092)
gh-121027: Add a future warning in functools.partial.__get__ (GH-121086)
(cherry picked from commit db96edd6d1a58045196a71aff565743f493b5fbb)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 971f92c..992d39e 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -2250,6 +2250,12 @@ Changes in the Python API returned by :meth:`zipfile.ZipFile.open` was changed from ``'r'`` to ``'rb'``. (Contributed by Serhiy Storchaka in :gh:`115961`.) +* :class:`functools.partial` now emits a :exc:`FutureWarning` when it is + used as a method. + Its behavior will be changed in future Python versions. + Wrap it in :func:`staticmethod` if you want to preserve the old behavior. + (Contributed by Serhiy Storchaka in :gh:`121027`.) + .. _pep667-porting-notes-py: * Calling :func:`locals` in an :term:`optimized scope` now produces an |