summaryrefslogtreecommitdiff
path: root/tests/feature_check/float.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/feature_check/float.py')
-rw-r--r--tests/feature_check/float.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/feature_check/float.py b/tests/feature_check/float.py
deleted file mode 100644
index d6d2a99d2..000000000
--- a/tests/feature_check/float.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# detect how many bits of precision the floating point implementation has
-
-try:
- float
-except NameError:
- print(0)
-else:
- if float("1.0000001") == float("1.0"):
- print(30)
- elif float("1e300") == float("inf"):
- print(32)
- else:
- print(64)