File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,12 @@ async def foo_try_except_star_3(): # safe
4444 raise
4545
4646
47- # Multiple except* handlers - should all guarantee checkpoint
47+ # Multiple except* handlers - should all guarantee checkpoint/raise
4848async def foo_try_except_star_4 ():
4949 try :
5050 await foo ()
5151 except* ValueError :
52- raise
52+ await foo ()
5353 except* TypeError :
5454 raise
5555 except* Exception :
Original file line number Diff line number Diff line change @@ -43,12 +43,12 @@ async def foo_try_except_star_3(): # safe
4343 raise
4444
4545
46- # Multiple except* handlers - should all guarantee checkpoint
46+ # Multiple except* handlers - should all guarantee checkpoint/raise
4747async def foo_try_except_star_4 ():
4848 try :
4949 await foo ()
5050 except* ValueError :
51- raise
51+ await foo ()
5252 except* TypeError :
5353 raise
5454 except* Exception :
You can’t perform that action at this time.
0 commit comments