From: Ken Jin Date: Fri, 7 Feb 2025 14:59:34 +0000 (+0800) Subject: gh-128563: Clarify tail calling interpreter is not TCO (#129809) X-Git-Tag: v3.14.0a5~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=476a78fdd62ad72b279ac692831619b22ad56201;p=thirdparty%2FPython%2Fcpython.git gh-128563: Clarify tail calling interpreter is not TCO (#129809) Clarify tail calling interpreter is not TCO --- diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index c788db31fc27..e5e9474d1e5d 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -233,6 +233,11 @@ For further information on how to build Python, see (Contributed by Ken Jin in :gh:`128718`, with ideas on how to implement this in CPython by Mark Shannon, Garret Gu, Haoran Xu, and Josh Haberman.) +.. note:: + + This is not to be confused with tail call optimization of Python code. + Python functions do not currently have tail call optimization. + Other language changes ======================