summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-26 09:49:42 (GMT)
committerGitHub <noreply@github.com>2024-06-26 09:49:42 (GMT)
commit84634254fef19ab31439e88ec0213acb46bd7b1f (patch)
tree9ee2d54b050c52b9cb1199c37f552f61512f9c96 /Misc/NEWS.d
parent571cefd8c7933f4917739dde43171558f109d63c (diff)
downloadcpython-84634254fef19ab31439e88ec0213acb46bd7b1f.zip
cpython-84634254fef19ab31439e88ec0213acb46bd7b1f.tar.gz
cpython-84634254fef19ab31439e88ec0213acb46bd7b1f.tar.bz2
[3.13] gh-121025: Improve partialmethod.__repr__ (GH-121033) (#121037)
gh-121025: Improve partialmethod.__repr__ (GH-121033) It no longer contains redundant commas and spaces. (cherry picked from commit d2646e3f45e3e4e831ee2ae84d55b161a361d592) Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-26-10-13-40.gh-issue-121025.M-XXlV.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-26-10-13-40.gh-issue-121025.M-XXlV.rst b/Misc/NEWS.d/next/Library/2024-06-26-10-13-40.gh-issue-121025.M-XXlV.rst
new file mode 100644
index 0000000..38cad61
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-26-10-13-40.gh-issue-121025.M-XXlV.rst
@@ -0,0 +1,2 @@
+Improve the :meth:`~object.__repr__` of :class:`functools.partialmethod`.
+Patch by Bénédikt Tran.