diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:36:24 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:36:24 (GMT) |
commit | 64204de04cb24bb70b1cf011d812d35c8ff40337 (patch) | |
tree | 08fd1decdb9c3d56d2b863863d4d2dd5ff074b7e /Python/opcode_targets.h | |
parent | 5697c4b6419e5a90a59e616e4509a6fff7ebf1a8 (diff) | |
download | cpython-64204de04cb24bb70b1cf011d812d35c8ff40337.zip cpython-64204de04cb24bb70b1cf011d812d35c8ff40337.tar.gz cpython-64204de04cb24bb70b1cf011d812d35c8ff40337.tar.bz2 |
Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Patch by Demur Rumed.
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 0fec934..6182e80 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -133,7 +133,7 @@ static void *opcode_targets[256] = { &&TARGET_CALL_FUNCTION, &&TARGET_MAKE_FUNCTION, &&TARGET_BUILD_SLICE, - &&TARGET_MAKE_CLOSURE, + &&_unknown_opcode, &&TARGET_LOAD_CLOSURE, &&TARGET_LOAD_DEREF, &&TARGET_STORE_DEREF, |