mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-107901: synthetic jumps which are not at end of loop no longer check the eval breaker (#113721)
This commit is contained in:
parent
bb4c167060
commit
d36a365118
7 changed files with 108 additions and 53 deletions
|
@ -21,7 +21,7 @@ class IsolatedCodeGenTests(CodegenTestCase):
|
|||
('TO_BOOL', 0, 1),
|
||||
('POP_JUMP_IF_FALSE', false_lbl := self.Label(), 1),
|
||||
('LOAD_CONST', 1, 1),
|
||||
('JUMP', exit_lbl := self.Label()),
|
||||
('JUMP_NO_INTERRUPT', exit_lbl := self.Label()),
|
||||
false_lbl,
|
||||
('LOAD_CONST', 2, 1),
|
||||
exit_lbl,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue