-
-
Notifications
You must be signed in to change notification settings - Fork 31k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python -VV should display whether the build is default build or free-threading. #119132
Comments
corona10
added a commit
to corona10/cpython
that referenced
this issue
May 17, 2024
vstinner
added a commit
to vstinner/cpython
that referenced
this issue
May 18, 2024
If we cannot agree on changing if (print_version) {
printf("Python %s\n",
(print_version >= 2) ? Py_GetVersion() : PY_VERSION);
return _PyStatus_EXIT(0);
} The code can be modified to log if Python is built with free-threading or not. |
vstinner
added a commit
that referenced
this issue
May 18, 2024
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
May 18, 2024
…GH-119140) (cherry picked from commit 74072a3) Co-authored-by: Victor Stinner <vstinner@python.org>
vstinner
added a commit
that referenced
this issue
May 18, 2024
It's better! |
corona10
added a commit
to corona10/cpython
that referenced
this issue
May 18, 2024
corona10
added a commit
that referenced
this issue
May 18, 2024
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
May 18, 2024
…pythongh-119134) (cherry picked from commit c141d43) Co-authored-by: Donghee Na <donghee.na@python.org>
corona10
added a commit
that referenced
this issue
May 18, 2024
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, there is no way to identify whether the build is free-threaded or not through
python -VV
See the pyperf and pyperformance case
The following display would be great.
Linked PRs
The text was updated successfully, but these errors were encountered: