diff options
| author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-03-08 15:53:22 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-08 15:53:22 (GMT) |
| commit | 5498a61c7c25db6f9e76032aa9c5153d79e09889 (patch) | |
| tree | 7a74ec449c7d56d0dfde2b3d977f49993fee09c1 /Lib/opcode.py | |
| parent | 28f84c72b6cee145f9c00e9b999656e9a2517e49 (diff) | |
| download | cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.zip cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.gz cpython-5498a61c7c25db6f9e76032aa9c5153d79e09889.tar.bz2 | |
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Diffstat (limited to 'Lib/opcode.py')
| -rw-r--r-- | Lib/opcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index a31a77a..eb9dd35 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -84,7 +84,7 @@ def_op('BEFORE_ASYNC_WITH', 52) def_op('BEFORE_WITH', 53) def_op('END_ASYNC_FOR', 54) -def_op('STORE_SUBSCR', 60) +def_op('STORE_SUBSCR', 60, 1) def_op('DELETE_SUBSCR', 61) def_op('GET_ITER', 68) |
