summaryrefslogtreecommitdiff
path: root/tests/basics/int-big-mul.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/int-big-mul.py')
-rw-r--r--tests/basics/int-big-mul.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/basics/int-big-mul.py b/tests/basics/int-big-mul.py
deleted file mode 100644
index f8d3dcd80..000000000
--- a/tests/basics/int-big-mul.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# tests transition from small to large int representation by multiplication
-for rhs in range(2, 11):
- lhs = 1
- for k in range(100):
- res = lhs * rhs
- print(lhs, '*', rhs, '=', res)
- lhs = res
-