diff options
author | Mark Shannon <mark@hotpy.org> | 2024-08-08 10:57:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 10:57:59 +0100 |
commit | 81c739e2dc5d19696b6e74fa1cd13914e84acef0 (patch) | |
tree | eae81066a3bb5b60e1b2ad153a363abcac06e112 /Python/generated_cases.c.h | |
parent | 0d9c123d1ac4f3dd30bdef5182049d9a831eca10 (diff) | |
download | cpython-81c739e2dc5d19696b6e74fa1cd13914e84acef0.tar.gz cpython-81c739e2dc5d19696b6e74fa1cd13914e84acef0.zip |
GH-120024: Tidy up case generator code a bit. (GH-122780)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 31f95eb4686..d0aa0f9fe83 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -882,7 +882,6 @@ } } // _DO_CALL - args = &stack_pointer[-oparg]; self_or_null = maybe_self; callable = func; { @@ -3651,7 +3650,6 @@ } } // _MONITOR_CALL - args = &stack_pointer[-oparg]; { int is_meth = !PyStackRef_IsNull(maybe_self); PyObject *function = PyStackRef_AsPyObjectBorrow(func); @@ -3672,7 +3670,6 @@ if (err) goto error; } // _DO_CALL - args = &stack_pointer[-oparg]; self_or_null = maybe_self; callable = func; { |