summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-27 12:13:01 (GMT)
committerGitHub <noreply@github.com>2024-06-27 12:13:01 (GMT)
commit49e5740135670e04ae6da7e6f52dbe380655e0f1 (patch)
tree47423e05c4f054ac6c6f1e7b42986ddb65b5b7d9 /Misc
parentc7d2b2b646f5abdbec501f63ab9b719b3db70a1f (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-27-13-47-14.gh-issue-121027.jh55EC.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-27-13-47-14.gh-issue-121027.jh55EC.rst b/Misc/NEWS.d/next/Library/2024-06-27-13-47-14.gh-issue-121027.jh55EC.rst
new file mode 100644
index 0000000..8470c8b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-27-13-47-14.gh-issue-121027.jh55EC.rst
@@ -0,0 +1,2 @@
+Add a future warning in :meth:`!functools.partial.__get__`. In future Python
+versions :class:`functools.partial` will be a method descriptor.