summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c6
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,
};