diff options
author | Victor Stinner <vstinner@python.org> | 2020-05-05 17:40:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 17:40:18 +0200 |
commit | 299b8c61e9d1a42b929b8deb1b05067876e191e6 (patch) | |
tree | 5ccfb0f8cb42140124af3fe5018dfdd6b3d7b8a1 /Python/ceval_gil.h | |
parent | 6351d9e4400a77fe1fcbe4f03e5fb6620cca236d (diff) | |
download | cpython-git-299b8c61e9d1a42b929b8deb1b05067876e191e6.tar.gz |
Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932)
This reverts commit 4e01946cafca0cf49f796c3118e0d65237bcad69.
Diffstat (limited to 'Python/ceval_gil.h')
-rw-r--r-- | Python/ceval_gil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval_gil.h b/Python/ceval_gil.h index db47077d5c..f25f810073 100644 --- a/Python/ceval_gil.h +++ b/Python/ceval_gil.h @@ -305,7 +305,7 @@ _ready: handle signals. Note: RESET_GIL_DROP_REQUEST() calls COMPUTE_EVAL_BREAKER(). */ - COMPUTE_EVAL_BREAKER(interp, ceval2); + COMPUTE_EVAL_BREAKER(interp, ceval, ceval2); } /* Don't access tstate if the thread must exit */ |