Coverage for bom.py: 71%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1# A Python source file in utf-8, with BOM. 

2math = "3×4 = 12, ÷2 = 6±0" 

3 

4import sys 

5 

6if sys.version_info >= (3, 0): 

7 assert len(math) == 18 

8 assert len(math.encode('utf-8')) == 21 

9else: 

10 assert len(math) == 21 

11 assert len(math.decode('utf-8')) == 18