diff options
author | Mark Shannon <mark@hotpy.org> | 2018-01-30 00:41:04 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-01-30 00:41:04 (GMT) |
commit | 332cd5ee4ff42c9904c56e68a1028f383f7fc9a8 (patch) | |
tree | 7e02c4a2919e9a8d17ed3be5008aa81d05dc14b1 /Lib/opcode.py | |
parent | b6e43af669f61a37a29d8ff0785455108e6bc29d (diff) | |
download | cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.zip cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.tar.gz cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.tar.bz2 |
bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)
Diffstat (limited to 'Lib/opcode.py')
-rw-r--r-- | Lib/opcode.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/opcode.py b/Lib/opcode.py index dffb38c..8f45f0a 100644 --- a/Lib/opcode.py +++ b/Lib/opcode.py @@ -169,7 +169,6 @@ def_op('STORE_FAST', 125) # Local variable number haslocal.append(125) def_op('DELETE_FAST', 126) # Local variable number haslocal.append(126) -name_op('STORE_ANNOTATION', 127) # Index in name list def_op('RAISE_VARARGS', 130) # Number of raise arguments (1, 2, or 3) def_op('CALL_FUNCTION', 131) # #args |