summaryrefslogtreecommitdiff
path: root/test/farm/html/src/bom.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/farm/html/src/bom.py')
-rw-r--r--test/farm/html/src/bom.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/farm/html/src/bom.py b/test/farm/html/src/bom.py
deleted file mode 100644
index 2db8b717..00000000
--- a/test/farm/html/src/bom.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# A python source file in utf-8, with BOM
-math = "3×4 = 12, ÷2 = 6±0"
-
-import sys
-
-if sys.version_info >= (3, 0):
- assert len(math) == 18
- assert len(math.encode('utf-8')) == 21
-else:
- assert len(math) == 21
- assert len(math.decode('utf-8')) == 18