diff options
author | Mark Shannon <mark@hotpy.org> | 2025-04-14 12:19:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-14 12:19:53 +0100 |
commit | 844596c09fc812a58ac1b381b51bee12d327da31 (patch) | |
tree | 2396230f46529229bba300f1adecf92c4a88deb4 /Include/internal | |
parent | be763e550e28e740b7b22c3267d14565d126f28d (diff) | |
download | cpython-844596c09fc812a58ac1b381b51bee12d327da31.tar.gz cpython-844596c09fc812a58ac1b381b51bee12d327da31.zip |
GH-131498: Cases generator: Allow input and 'peek' variables to be modified (GH-132506)
Diffstat (limited to 'Include/internal')
-rw-r--r-- | Include/internal/pycore_uop_metadata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_uop_metadata.h b/Include/internal/pycore_uop_metadata.h index 8fa50ff2c29..ab26543a26f 100644 --- a/Include/internal/pycore_uop_metadata.h +++ b/Include/internal/pycore_uop_metadata.h @@ -1081,7 +1081,7 @@ int _PyUop_num_popped(int opcode, int oparg) case _CALL_KW_NON_PY: return 3 + oparg; case _MAKE_CALLARGS_A_TUPLE: - return 2; + return 0; case _MAKE_FUNCTION: return 1; case _SET_FUNCTION_ATTRIBUTE: |