summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPieter Eendebak <pieter.eendebak@gmail.com>2024-12-26 15:17:22 (GMT)
committerGitHub <noreply@github.com>2024-12-26 15:17:22 (GMT)
commit3bd7730bbda3e38db5920a7b8c95958ca90342bf (patch)
tree979f14790cdce58474c45e39d2575e7b1c5cdd03 /Misc
parentfb0b94223d481ca58b7c77332348d1ab2c9ab272 (diff)
downloadcpython-3bd7730bbda3e38db5920a7b8c95958ca90342bf.zip
cpython-3bd7730bbda3e38db5920a7b8c95958ca90342bf.tar.gz
cpython-3bd7730bbda3e38db5920a7b8c95958ca90342bf.tar.bz2
gh-126868: Add freelist for compact ints to `_PyLong_New` (#128181)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core_and_Builtins/2024-12-22-15-47-44.gh-issue-126868.RpjKez.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core_and_Builtins/2024-12-22-15-47-44.gh-issue-126868.RpjKez.rst b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-22-15-47-44.gh-issue-126868.RpjKez.rst
new file mode 100644
index 0000000..ede383d
--- /dev/null
+++ b/Misc/NEWS.d/next/Core_and_Builtins/2024-12-22-15-47-44.gh-issue-126868.RpjKez.rst
@@ -0,0 +1 @@
+Increase usage of freelist for :class:`int` allocation.