-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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-129354: Use PyErr_FormatUnraisable() function #129523
Conversation
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable(). Update tests: * test_coroutines * test_exceptions * test_generators * test_struct
This change removes the object argument of |
I extracted some changes which don't impact tests in #129656. |
@@ -2411,10 +2413,13 @@ async def corofn(): | |||
coro_repr = repr(coro) | |||
|
|||
# clear reference to the coroutine without awaiting for it | |||
coro_repr = repr(coro) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is already evaluated three lines above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh sorry, I enabled automerge before you posted your review. I wrote #129684 to remove the duplicated variable and remove a few other minor similar issues.
Ah, you missed my comment. Not big deal, but now the test looks slightly dirty. |
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable(). Update tests: * test_coroutines * test_exceptions * test_generators * test_struct
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable(). Update tests: * test_coroutines * test_exceptions * test_generators * test_struct
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable().
Update tests:
PyErr_WriteUnraisable()
withPyErr_FormatUnraisable()
#129354