1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

# A test file for HTML reporting by coverage. 

 

def one(x): 

8    if x < 2: 

        # Needed a < to look at HTML entities. 

        a = 3 

    else: 

        a = 4 

 

one(1) 

 

def two(x): 

exit    if x: 

        a = 5 

 

two(1)