diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-11-30 11:03:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 11:03:30 (GMT) |
commit | 07ebd46f9e55ed2f18c5ea2a79ec5054bc26b915 (patch) | |
tree | cfa482ec8e6e8f5dd4b77804a668235aa1ae9ccf /Python/bytecodes.c | |
parent | 7eeea13403882af63a71226433c9a13b80c22564 (diff) | |
download | cpython-07ebd46f9e55ed2f18c5ea2a79ec5054bc26b915.zip cpython-07ebd46f9e55ed2f18c5ea2a79ec5054bc26b915.tar.gz cpython-07ebd46f9e55ed2f18c5ea2a79ec5054bc26b915.tar.bz2 |
gh-112519: Make it possible to specify instruction flags for pseudo instructions in bytecodes.c (#112520)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 2e5f6c8..2075c19 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -2831,15 +2831,15 @@ dummy_func( ERROR_IF(res == NULL, error); } - pseudo(SETUP_FINALLY) = { + pseudo(SETUP_FINALLY, (HAS_ARG)) = { NOP, }; - pseudo(SETUP_CLEANUP) = { + pseudo(SETUP_CLEANUP, (HAS_ARG)) = { NOP, }; - pseudo(SETUP_WITH) = { + pseudo(SETUP_WITH, (HAS_ARG)) = { NOP, }; |