diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-13 09:36:06 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-13 09:36:06 +0300 |
commit | 5be034cf6165724587beb18dca9e5b7682442a74 (patch) | |
tree | 6b6cef1d5851e7f5770aa78f9290dba4f546bb01 /Python/opcode_targets.h | |
parent | b1ec624fe7b26b6a23658840b50b15b372de670e (diff) | |
parent | 8128e231900edc5b5f035f83186cb7507271ab84 (diff) | |
download | cpython-5be034cf6165724587beb18dca9e5b7682442a74.tar.gz |
Issue #20729: Restored the use of lazy iterkeys()/itervalues()/iteritems()
in the mailbox module. This is partial rollback of changeset f340cb045bf9.
Diffstat (limited to 'Python/opcode_targets.h')
-rw-r--r-- | Python/opcode_targets.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index f90a17a7ee..1553a7a32f 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -15,8 +15,8 @@ static void *opcode_targets[256] = { &&_unknown_opcode, &&_unknown_opcode, &&TARGET_UNARY_INVERT, - &&_unknown_opcode, - &&_unknown_opcode, + &&TARGET_BINARY_MATRIX_MULTIPLY, + &&TARGET_INPLACE_MATRIX_MULTIPLY, &&_unknown_opcode, &&TARGET_BINARY_POWER, &&TARGET_BINARY_MULTIPLY, |