summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float')
-rw-r--r--tests/float/modulo.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/float/modulo.py b/tests/float/modulo.py
deleted file mode 100644
index 911268513a..0000000000
--- a/tests/float/modulo.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# check modulo matches python definition
-# TODO we currenty fail with this
-if False:
- print(1.23456 % 0.7)
- print(-1.23456 % 0.7)
- print(1.23456 % -0.7)
- print(-1.23456 % -0.7)
-
- a = 1.23456
- b = 0.7
- print(a % b)
- print(a % -b)
- print(-a % b)
- print(-a % -b)