Coverage for partial.py: 91%
Shortcuts on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# partial branches and excluded lines
2a = 2
4while "no peephole".upper(): # t4 4 ↛ 7line 4 didn't jump to line 7, because the condition on line 4 was never false
5 break
7while a: # pragma: no branch
8 break
10if 0:
11 never_happen()
13if 13:
14 a = 14
16if a == 16:
17 raise ZeroDivisionError("17")