summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2022-08-16 12:57:18 (GMT)
committerGitHub <noreply@github.com>2022-08-16 12:57:18 (GMT)
commit5a8c15819c27c516e5b75b7c9d89eacdb16b77c3 (patch)
treeb75d585f24f97aac724952a75175cc9f15af48af /Misc
parent829aab859266253320317caabdb0e17fa4e0f05e (diff)
downloadcpython-5a8c15819c27c516e5b75b7c9d89eacdb16b77c3.zip
cpython-5a8c15819c27c516e5b75b7c9d89eacdb16b77c3.tar.gz
cpython-5a8c15819c27c516e5b75b7c9d89eacdb16b77c3.tar.bz2
GH-95245: Move weakreflist into the pre-header. (GH-95996)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-08-15-12-41-14.gh-issue-95245.N4gOUV.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-08-15-12-41-14.gh-issue-95245.N4gOUV.rst b/Misc/NEWS.d/next/Core and Builtins/2022-08-15-12-41-14.gh-issue-95245.N4gOUV.rst
new file mode 100644
index 0000000..4449ddd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-08-15-12-41-14.gh-issue-95245.N4gOUV.rst
@@ -0,0 +1,3 @@
+Reduces the size of a "simple" Python object from 8 to 6 words by moving the
+weakreflist pointer into the pre-header directly before the object's
+dict/values pointer.