From e028ae99ecee671c0e8a3eabb829b5b2acfc4441 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 6 Jan 2022 13:09:25 +0000 Subject: bpo-45923: Handle call events in bytecode (GH-30364) * Add a RESUME instruction to handle "call" events. --- Python/opcode_targets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/opcode_targets.h') diff --git a/Python/opcode_targets.h b/Python/opcode_targets.h index 7ba45666ed..c78425ff9b 100644 --- a/Python/opcode_targets.h +++ b/Python/opcode_targets.h @@ -150,7 +150,7 @@ static void *opcode_targets[256] = { &&TARGET_LOAD_CLASSDEREF, &&TARGET_COPY_FREE_VARS, &&_unknown_opcode, - &&_unknown_opcode, + &&TARGET_RESUME, &&TARGET_MATCH_CLASS, &&_unknown_opcode, &&_unknown_opcode, -- cgit v1.2.1