diff options
author | Mark Shannon <mark@hotpy.org> | 2022-08-16 12:57:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 12:57:18 (GMT) |
commit | 5a8c15819c27c516e5b75b7c9d89eacdb16b77c3 (patch) | |
tree | b75d585f24f97aac724952a75175cc9f15af48af /Misc | |
parent | 829aab859266253320317caabdb0e17fa4e0f05e (diff) | |
download | cpython-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.rst | 3 |
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. |