https://github.com/python/cpython/commit/476a78fdd62ad72b279ac692831619b22ad56201 commit: 476a78fdd62ad72b279ac692831619b22ad56201 branch: main author: Ken Jin <[email protected]> committer: Yhg1s <[email protected]> date: 2025-02-07T14:59:34Z summary:
gh-128563: Clarify tail calling interpreter is not TCO (#129809) Clarify tail calling interpreter is not TCO files: M Doc/whatsnew/3.14.rst 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 ====================== _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
