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-129354: Use PyErr_FormatUnraisable() function #129523

Merged
merged 5 commits into from
Feb 5, 2025

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Jan 31, 2025

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
@vstinner
Copy link
Member Author

vstinner commented Jan 31, 2025

This change removes the object argument of sys.unraisablehook on the modified PyErr_WriteUnraisable() calls. I had to update 4 tests for these changes.

cc @serhiy-storchaka

@vstinner
Copy link
Member Author

vstinner commented Feb 4, 2025

I extracted some changes which don't impact tests in #129656.

@vstinner vstinner enabled auto-merge (squash) February 5, 2025 10:09
@@ -2411,10 +2413,13 @@ async def corofn():
coro_repr = repr(coro)

# clear reference to the coroutine without awaiting for it
coro_repr = repr(coro)
Copy link
Member

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.

Copy link
Member Author

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.

@vstinner vstinner merged commit a25042e into python:main Feb 5, 2025
45 checks passed
@vstinner vstinner deleted the format_unraisable7 branch February 5, 2025 10:32
@serhiy-storchaka
Copy link
Member

Ah, you missed my comment. Not big deal, but now the test looks slightly dirty.

srinivasreddy pushed a commit to srinivasreddy/cpython that referenced this pull request Feb 7, 2025
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable().

Update tests:

* test_coroutines
* test_exceptions
* test_generators
* test_struct
cmaloney pushed a commit to cmaloney/cpython that referenced this pull request Feb 8, 2025
Replace PyErr_WriteUnraisable() with PyErr_FormatUnraisable().

Update tests:

* test_coroutines
* test_exceptions
* test_generators
* test_struct
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.

2 participants