summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/complex1.py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-06 15:46:01 +0100
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2017-03-06 15:46:01 +0100
commit325c4473a5b760a2251a6e0e418abf218741fb1f (patch)
tree02c59744efcf73bd3861ce5b1b8869d1e1db5e9f /tests/float/complex1.py
parent96aa3a31023d9b170c4e3d0ef5090a2f21f0b64b (diff)
downloadmicropython-325c4473a5b760a2251a6e0e418abf218741fb1f.tar.gz
micropython-325c4473a5b760a2251a6e0e418abf218741fb1f.zip
tests/float/complex1: Split out intbig test.
Diffstat (limited to 'tests/float/complex1.py')
-rw-r--r--tests/float/complex1.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/float/complex1.py b/tests/float/complex1.py
index 1031111f37..8c8d285e1a 100644
--- a/tests/float/complex1.py
+++ b/tests/float/complex1.py
@@ -49,9 +49,6 @@ print(float('nan') * 1j)
print(float('inf') * (1 + 1j))
print(float('-inf') * (1 + 1j))
-# convert bignum to complex on rhs
-ans = 1j + (1 << 70); print("%.5g %.5g" % (ans.real, ans.imag))
-
# can't assign to attributes
try:
(1j).imag = 0