summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPieter Eendebak <pieter.eendebak@gmail.com>2025-01-12 13:01:49 (GMT)
committerGitHub <noreply@github.com>2025-01-12 13:01:49 (GMT)
commitff39e3ff7bebc9d700d89c5cd22145db2c879cf2 (patch)
tree53c0c58a4565fff1d2563005834739d6bf829b0d /Misc
parent5ace71713b03cb37d829f50c849a8bb8a518738d (diff)
downloadcpython-ff39e3ff7bebc9d700d89c5cd22145db2c879cf2.zip
cpython-ff39e3ff7bebc9d700d89c5cd22145db2c879cf2.tar.gz
cpython-ff39e3ff7bebc9d700d89c5cd22145db2c879cf2.tar.bz2
gh-126703: Add freelist for `PyMethodObject` (#128594)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2025-01-07-19-48-56.gh-issue-126703.0ISs-7.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2025-01-07-19-48-56.gh-issue-126703.0ISs-7.rst b/Misc/NEWS.d/next/Core_and_Builtins/2025-01-07-19-48-56.gh-issue-126703.0ISs-7.rst
new file mode 100644
index 0000000..ecb8edd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2025-01-07-19-48-56.gh-issue-126703.0ISs-7.rst
@@ -0,0 +1 @@
+Improve performance of class methods by using a freelist.