summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int_divmod.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/int_divmod.py')
-rw-r--r--tests/basics/int_divmod.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/int_divmod.py b/tests/basics/int_divmod.py
index 71a990823e..3c76cd958c 100644
--- a/tests/basics/int_divmod.py
+++ b/tests/basics/int_divmod.py
@@ -6,12 +6,6 @@ for i in range(-2, 3):
if j != 0:
print(i, j, i // j, i % j, divmod(i, j))
-# this tests compiler constant folding
-print(123 // 7, 123 % 7)
-print(-123 // 7, -123 % 7)
-print(123 // -7, 123 % -7)
-print(-123 // -7, -123 % -7)
-
# this tests bignum modulo
a = 987654321987987987987987987987
b = 19