Coverage for bom.py : 71%

Show keyboard shortcuts

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