8000 gh-59956: Fix Function Groupings in pystate.c by ericsnowcurrently · Pull Request #101172 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-59956: Fix Function Groupings in pystate.c #101172

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

Merged
merged 3 commits into from
Jan 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add a TODO.
  • Loading branch information
ericsnowcurrently committed Jan 19, 2023
commit 50b97a044bf4d84935c02b02acdacc5dc7fd1407
1 change: 1 addition & 0 deletions Python/pystate.c
5D20
Original file line number Diff line number Diff line change
Expand Up @@ -1456,6 +1456,7 @@ PyThreadState_GetID(PyThreadState *tstate)
existing async exception. This raises no exceptions. */

// XXX Move this to Python/ceval_gil.c?
// XXX Deprecate this.
int
PyThreadState_SetAsyncExc(unsigned long id, PyObject *exc)
{
Expand Down
0