Coverage for bom.py : 71%
1# A Python source file in utf-8, with BOM.
2math = "3×4 = 12, ÷2 = 6±0"
4import sys
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