diff options
author | Ken Jin <kenjin@python.org> | 2023-04-30 13:08:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 13:08:26 (GMT) |
commit | ed95e8cbd4cbc813666c7ce7760257cc0f169d03 (patch) | |
tree | 55929b3092e83753baa34eac09f63666d072d286 /Misc | |
parent | accb417c338630ac6e836a5c811a89d54a3cd1d3 (diff) | |
download | cpython-ed95e8cbd4cbc813666c7ce7760257cc0f169d03.zip cpython-ed95e8cbd4cbc813666c7ce7760257cc0f169d03.tar.gz cpython-ed95e8cbd4cbc813666c7ce7760257cc0f169d03.tar.bz2 |
gh-98003: Inline call frames for CALL_FUNCTION_EX (GH-98004)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2022-10-06-23-32-11.gh-issue-98003.xWE0Yu.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-10-06-23-32-11.gh-issue-98003.xWE0Yu.rst b/Misc/NEWS.d/next/Core and Builtins/2022-10-06-23-32-11.gh-issue-98003.xWE0Yu.rst new file mode 100644 index 0000000..f9e71bc --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-10-06-23-32-11.gh-issue-98003.xWE0Yu.rst @@ -0,0 +1,3 @@ +Complex function calls are now faster and consume no C stack +space. + |