diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-02-25 18:05:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-25 18:05:24 (GMT) |
commit | eb002dbe0da9622245a355db5f0cd5aa2fc70b40 (patch) | |
tree | 6d46f4c375a31a6b66e1c806f492972fc571e9c2 /Misc | |
parent | ea9612a17bc60d44e0058f525d3c02a91c439cef (diff) | |
download | cpython-eb002dbe0da9622245a355db5f0cd5aa2fc70b40.zip cpython-eb002dbe0da9622245a355db5f0cd5aa2fc70b40.tar.gz cpython-eb002dbe0da9622245a355db5f0cd5aa2fc70b40.tar.bz2 |
bpo-46712: Share global string identifiers in deepfreeze (GH-31261)
Where appropriate, deepfreeze.c now uses `&_Py_ID(blah)` references instead of locally defining constants. This saves some space.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-02-24-07-50-43.bpo-46712.pw7vQV.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-02-24-07-50-43.bpo-46712.pw7vQV.rst b/Misc/NEWS.d/next/Core and Builtins/2022-02-24-07-50-43.bpo-46712.pw7vQV.rst new file mode 100644 index 0000000..9dbf7e0 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-02-24-07-50-43.bpo-46712.pw7vQV.rst @@ -0,0 +1 @@ +Share global string identifiers in deep-frozen modules. |