-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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-127870: Fix ctypes _as_parameter_ handling #127872
Conversation
Detect recursive calls in ctypes _as_parameter_ handling: add Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() calls.
Thanks @vstinner for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
…ling (pythonGH-127872) (cherry picked from commit 6ff38fc) Co-authored-by: Victor Stinner <[email protected]>
Sorry, @vstinner, I could not cleanly backport this to
|
GH-127917 is a backport of this pull request to the 3.13 branch. |
…ling (python#127872) (cherry picked from commit 6ff38fc)
…ling (python#127872) (cherry picked from commit 6ff38fc)
GH-127918 is a backport of this pull request to the 3.12 branch. |
|
Detect recursive calls in ctypes
_as_parameter_
handling: addPy_EnterRecursiveCall()
andPy_LeaveRecursiveCall()
calls.MagicMock
#127870