-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
Update test_check_c_globals to not need distutils & reenable it #100237
Comments
AlexWaygood
changed the title
Update test_check_c_globals no not need distutils & reenable it
Update test_check_c_globals to not need distutils & reenable it
Dec 14, 2022
I'm taking care of this via gh-102506. |
ericsnowcurrently
added a commit
that referenced
this issue
Mar 14, 2023
…02506) This will keep us from adding new unsupported (i.e. non-const) C global variables, which would break interpreter isolation. FYI, historically it is very uncommon for new global variables to get added. Furthermore, it is rare for new code to break the c-analyzer. So the check should almost always pass unnoticed. Note that I've removed test_check_c_globals. A test wasn't a great fit conceptually and was super slow on debug builds. A CI check is a better fit. This also resolves gh-100237. #81057
Fidget-Spinner
pushed a commit
to Fidget-Spinner/cpython
that referenced
this issue
Mar 27, 2023
…pythongh-102506) This will keep us from adding new unsupported (i.e. non-const) C global variables, which would break interpreter isolation. FYI, historically it is very uncommon for new global variables to get added. Furthermore, it is rare for new code to break the c-analyzer. So the check should almost always pass unnoticed. Note that I've removed test_check_c_globals. A test wasn't a great fit conceptually and was super slow on debug builds. A CI check is a better fit. This also resolves pythongh-100237. python#81057
warsaw
pushed a commit
to warsaw/cpython
that referenced
this issue
Apr 11, 2023
…pythongh-102506) This will keep us from adding new unsupported (i.e. non-const) C global variables, which would break interpreter isolation. FYI, historically it is very uncommon for new global variables to get added. Furthermore, it is rare for new code to break the c-analyzer. So the check should almost always pass unnoticed. Note that I've removed test_check_c_globals. A test wasn't a great fit conceptually and was super slow on debug builds. A CI check is a better fit. This also resolves pythongh-100237. python#81057
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
distutils
was removed from 3.12, as per PEP 632.test_check_c_globals
, which uses it, was disabled. It should be updated to not needdistutils
.See #92584
The text was updated successfully, but these errors were encountered: