diff options
author | Mark Shannon <mark@hotpy.org> | 2023-09-04 11:36:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 11:36:57 +0100 |
commit | 5a3672cb39544de72963cccde9799313bab14d07 (patch) | |
tree | cbe84705916dd4bbfb369139be6df6b1a18414e9 /Python/executor.c | |
parent | 074ac1f72e392a576516639f650bac0519d1cb52 (diff) | |
download | cpython-5a3672cb39544de72963cccde9799313bab14d07.tar.gz cpython-5a3672cb39544de72963cccde9799313bab14d07.zip |
GH-108614: Remove `TIER_ONE` and `TIER_TWO` from `_PUSH_FRAME` (GH-108725)
Diffstat (limited to 'Python/executor.c')
-rw-r--r-- | Python/executor.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/executor.c b/Python/executor.c index 9b3262ed416..ac9104223da 100644 --- a/Python/executor.c +++ b/Python/executor.c @@ -109,7 +109,6 @@ pop_3_error: pop_2_error: STACK_SHRINK(1); pop_1_error: -pop_1_exit_unwind: STACK_SHRINK(1); error: // On ERROR_IF we return NULL as the frame. |