Skip to content
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

gh-128360: Use a portable assertion for holding a thread state #128361

Merged
merged 11 commits into from
Jan 20, 2025

Conversation

ZeroIntensity
Copy link
Member

@ZeroIntensity ZeroIntensity commented Dec 30, 2024

Copy link
Member

@vstinner vstinner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer to keep PyGILState_Check() design: a function which returns 1 or 0, so it can be used with assert().

Something like: assert(_Py_HoldsTstate()).

Copy link
Member

@vstinner vstinner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@vstinner
Copy link
Member

cc @colesbury

@vstinner
Copy link
Member

cc @kumaraditya303

@ZeroIntensity
Copy link
Member Author

@vstinner Kumar seems to dislike the current approach with _Py_EnsureTstateNotNULL. I see a few different options:

  • Leave it as-is.
  • Return tstate != NULL, which is what I did before the current approach (we lose the pretty error message, though).
  • Do something like my original approach with _Py_AssertHoldsTstate, but call it something like _PyDebug_AssertHoldsTstate that makes it more clear that it does nothing on release builds.

What's your preference?

@vstinner
Copy link
Member

I prefer to call _Py_EnsureTstateNotNULL() since it has a nice error message. I'm fine with _Py_AssertHoldsTstate() name.

but call it something like _PyDebug_AssertHoldsTstate that makes it more clear that it does nothing on release builds.

Maybe it should do something if Python is built in release mode with assertions. So use NDEBUG macro instead of Py_DEBUG macro.

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Copy link
Member

@vstinner vstinner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@kumaraditya303 kumaraditya303 merged commit 4d0a659 into python:main Jan 20, 2025
40 checks passed
@ZeroIntensity ZeroIntensity deleted the remove-pygilstate-check branch January 20, 2025 14:41
srinivasreddy pushed a commit to srinivasreddy/cpython that referenced this pull request Jan 21, 2025
… a thread state (python#128361)

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants