From 2cf7defae9b12bd9851ffb442cb2ff39fd6eabe6 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Fri, 7 Feb 2025 22:53:10 +0800 Subject: [PATCH] Clarify tail calling interpreter is not TCO --- Doc/whatsnew/3.14.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index c788db31fc27ed..e5e9474d1e5d85 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 ======================