diff options
author | Mark Shannon <mark@hotpy.org> | 2018-01-30 00:41:04 +0000 |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-01-29 16:41:04 -0800 |
commit | 332cd5ee4ff42c9904c56e68a1028f383f7fc9a8 (patch) | |
tree | 7e02c4a2919e9a8d17ed3be5008aa81d05dc14b1 /Python/opcode_targets.h | |
parent | bpo-28134: Auto-detect socket values from file descriptor (#1349) (diff) | |
download | cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.tar.gz cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.tar.bz2 cpython-332cd5ee4ff42c9904c56e68a1028f383f7fc9a8.zip |
bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)
Diffstat (limited to 'Python/opcode_targets.h')
-rw-r--r-- | Python/opcode_targets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index 567f8723a67..da6d032bce4 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -126,7 +126,7 @@ static void *opcode_targets[256] = { &&TARGET_LOAD_FAST, &&TARGET_STORE_FAST, &&TARGET_DELETE_FAST, - &&TARGET_STORE_ANNOTATION, + &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, &&TARGET_RAISE_VARARGS, |