diff options
author | Pieter Eendebak <pieter.eendebak@gmail.com> | 2025-01-12 13:01:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-12 13:01:49 (GMT) |
commit | ff39e3ff7bebc9d700d89c5cd22145db2c879cf2 (patch) | |
tree | 53c0c58a4565fff1d2563005834739d6bf829b0d /Misc | |
parent | 5ace71713b03cb37d829f50c849a8bb8a518738d (diff) | |
download | cpython-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.rst | 1 |
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. |