summaryrefslogtreecommitdiff
path: root/tests/basics/int-big-mod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/int-big-mod.py')
-rw-r--r--tests/basics/int-big-mod.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/basics/int-big-mod.py b/tests/basics/int-big-mod.py
deleted file mode 100644
index 77c0ffc46..000000000
--- a/tests/basics/int-big-mod.py
+++ /dev/null
@@ -1,10 +0,0 @@
-# test % operation on big integers
-
-delta = 100000000000000000000000000000012345
-
-for i in range(11):
- for j in range(11):
- x = delta * (i)# - 5) # TODO reinstate negative number test when % is working with sign correctly
- y = delta * (j)# - 5) # TODO reinstate negative number test when % is working with sign correctly
- if y != 0:
- print(x % y)