diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2025-04-18 07:16:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-18 07:16:28 -0700 |
commit | 40ae88988c61638ee8625e5c0ee73606ede307bb (patch) | |
tree | 82339d2ea14f3d89c71da98f5426eb9ffe9a2472 /Include | |
parent | a594008d9e6c4d37ff6fd698395cd318d7ec3300 (diff) | |
download | cpython-40ae88988c61638ee8625e5c0ee73606ede307bb.tar.gz cpython-40ae88988c61638ee8625e5c0ee73606ede307bb.zip |
GH-131498: Replace single-element arrays with scalars in bytecodes.c (GH-132615)
Diffstat (limited to 'Include')
-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 ab26543a26f..874756770c1 100644 --- a/Include/internal/pycore_uop_metadata.h +++ b/Include/internal/pycore_uop_metadata.h @@ -1067,7 +1067,7 @@ int _PyUop_num_popped(int opcode, int oparg) case _CALL_METHOD_DESCRIPTOR_FAST: return 2 + oparg; case _MAYBE_EXPAND_METHOD_KW: - return 1; + return 0; case _PY_FRAME_KW: return 3 + oparg; case _CHECK_FUNCTION_VERSION_KW: |