diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-04-30 13:41:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-04-30 13:41:40 (GMT) |
commit | 3b0431dc6019d2f9ffa9adcaa78ddd3f7b76a2f5 (patch) | |
tree | 7f98ecba2e560776b91856eb74487c26c73d5d0d /Python/opcode_targets.h | |
parent | f256f5f3ebf6574a2708cfea36d857846893e71f (diff) | |
download | cpython-3b0431dc6019d2f9ffa9adcaa78ddd3f7b76a2f5.zip cpython-3b0431dc6019d2f9ffa9adcaa78ddd3f7b76a2f5.tar.gz cpython-3b0431dc6019d2f9ffa9adcaa78ddd3f7b76a2f5.tar.bz2 |
check local class namespace before reaching for cells (closes #17853)
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 2d6bcda..645127e 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -147,7 +147,7 @@ static void *opcode_targets[256] = { &&TARGET_LIST_APPEND, &&TARGET_SET_ADD, &&TARGET_MAP_ADD, - &&_unknown_opcode, + &&TARGET_LOAD_CLASSDEREF, &&_unknown_opcode, &&_unknown_opcode, &&_unknown_opcode, |