]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: more explanation of the implications of new tail-call interpreter (GH-129863)
authorNed Batchelder <ned@nedbatchelder.com>
Sat, 8 Feb 2025 19:28:35 +0000 (12:28 -0700)
committerGitHub <noreply@github.com>
Sat, 8 Feb 2025 19:28:35 +0000 (19:28 +0000)
Co-authored-by: Ken Jin <kenjin4096@gmail.com>
Doc/whatsnew/3.14.rst

index 9c4922308b7f2db1a45e7d594aa23bdb36e434dd..ba7e8b42ef1f249cac6074fb68c507c75bcd30e3 100644 (file)
@@ -235,9 +235,13 @@ For further information on how to build Python, see
    This is not to be confused with `tail call optimization`__ of Python
    functions, which is currently not implemented in CPython.
 
+   This new interpreter type is an internal implementation detail of the CPython
+   interpreter.  It doesn't change the visible behavior of Python programs at
+   all.  It can improve their performance, but doesn't change anything else.
+
    __ https://en.wikipedia.org/wiki/Tail_call
 
-(Contributed by Ken Jin in :gh:`128718`, with ideas on how to implement this
+(Contributed by Ken Jin in :gh:`128563`, with ideas on how to implement this
 in CPython by Mark Shannon, Garrett Gu, Haoran Xu, and Josh Haberman.)