summaryrefslogtreecommitdiff
path: root/tests/float/complex1_intbig.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/complex1_intbig.py')
-rw-r--r--tests/float/complex1_intbig.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/float/complex1_intbig.py b/tests/float/complex1_intbig.py
index ed2390bba..864036b99 100644
--- a/tests/float/complex1_intbig.py
+++ b/tests/float/complex1_intbig.py
@@ -1,4 +1,5 @@
# test basic complex number functionality
# convert bignum to complex on rhs
-ans = 1j + (1 << 70); print("%.5g %.5g" % (ans.real, ans.imag))
+ans = 1j + (1 << 70)
+print("%.5g %.5g" % (ans.real, ans.imag))