bpo-46841: Don't use an oparg counter for STORE_SUBSCR (GH-31742)

This commit is contained in:
Brandt Bucher 2022-03-08 07:53:22 -08:00 committed by GitHub
parent 28f84c72b6
commit 5498a61c7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 28 additions and 29 deletions

View file

@ -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)