Skip to content

Commit a3e0387

Browse files
committed
Always initialize exception handler for new instruction
1 parent 7140b99 commit a3e0387

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Python/flowgraph.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ basicblock_addop(basicblock *b, int opcode, int oparg, location loc)
200200
i->i_opcode = opcode;
201201
i->i_oparg = oparg;
202202
i->i_target = NULL;
203+
i->i_except = NULL;
203204
i->i_loc = loc;
204205

205206
return SUCCESS;

0 commit comments

Comments
 (0)