https://github.com/python/cpython/commit/43e024021392c8c70e5a56cdf7428ced45d73688
commit: 43e024021392c8c70e5a56cdf7428ced45d73688
branch: main
author: Pieter Eendebak <[email protected]>
committer: Fidget-Spinner <[email protected]>
date: 2025-02-07T08:47:13+08:00
summary:

gh-129737: Fix help message for tail calling interpreter configuration 
(GH-129754)

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 22456959add174..65b8e711cdccae 100755
--- a/configure
+++ b/configure
@@ -1930,7 +1930,7 @@ Optional Packages:
                           use libedit for backend or disable readline module
   --with-computed-gotos   enable computed gotos in evaluation loop (enabled by
                           default on supported compilers)
-  --tail-call-interp      enable tail-calling interpreter in evaluation loop
+  --with-tail-call-interp enable tail-calling interpreter in evaluation loop
                           and rest of CPython
   --with-ensurepip[=install|upgrade|no]
                           "install" or "upgrade" using bundled pip (default is
diff --git a/configure.ac b/configure.ac
index cf16e77f0a1503..0c6063d87d654a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7022,7 +7022,7 @@ AC_MSG_CHECKING([for --with-tail-call-interp])
 AC_ARG_WITH(
   [tail-call-interp],
   [AS_HELP_STRING(
-    [--tail-call-interp],
+    [--with-tail-call-interp],
     [enable tail-calling interpreter in evaluation loop and rest of CPython]
   )],
 [

_______________________________________________
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]

Reply via email to