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

7 statements  

1# partial branches and excluded lines 

2a = 2 

3 

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 

6 

7while a: # pragma: no branch 

8 break 

9 

10if 0: 

11 never_happen() 

12 

13if 13: 

14 a = 14 

15 

16if a == 16: 

17 raise ZeroDivisionError("17")