diff options
author | Inada Naoki <songofacandy@gmail.com> | 2021-02-10 00:20:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 00:20:42 (GMT) |
commit | bdb941be423bde8b02a5695ccf51c303d6204bed (patch) | |
tree | e84e49eca1b557ec85efa21c815260182ea8fd7a /Misc | |
parent | dbb228189b4eb7ab41f326eb79dae669b2c81177 (diff) | |
download | cpython-bdb941be423bde8b02a5695ccf51c303d6204bed.zip cpython-bdb941be423bde8b02a5695ccf51c303d6204bed.tar.gz cpython-bdb941be423bde8b02a5695ccf51c303d6204bed.tar.bz2 |
bpo-42217: compiler: merge same co_code and co_linetable objects (GH-23056)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-10-31-16-54-00.bpo-42217.GdcHe5.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-31-16-54-00.bpo-42217.GdcHe5.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-31-16-54-00.bpo-42217.GdcHe5.rst new file mode 100644 index 0000000..c50b69d --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-31-16-54-00.bpo-42217.GdcHe5.rst @@ -0,0 +1 @@ +Make the compiler merges same co_code and co_linetable objects in a module like already did for co_consts. |