Issue428971

classification
Title: Complex numbers behave strangely
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: pedronis
Priority: normal Keywords: test failure causes

Created on 2001-05-31.11:54:28 by anonymous, last changed 2001-05-31.17:22:12 by pedronis.

Messages
msg315 (view) Author: Nobody/Anonymous (nobody) Date: 2001-05-31.11:54:28
Here is a test scrip I wrote:
-----------------------------------------------
#test.py
a=1000000000000000000000000000000000000000. + 
1000000000000000000000000.j
b=110000000000000000000000000000000000000. 
+100000000000000000000000000.j
z=a*b
print(a)#STRANGE
print(a.real)
print(a.imag)
print(b)#STRANGE
print(b.real)
print(b.imag)
print(z)#STRANGE
print(z.real)
print(z.imag)
#end test.py
------------------------------------------------
Lines marked as #STRANGE give strange results, while 
the other work properly
msg316 (view) Author: Samuele Pedroni (pedronis) Date: 2001-05-31.17:22:12
Logged In: YES 
user_id=61408

already fixed in the CVS version.
History
Date User Action Args
2001-05-31 11:54:28anonymouscreate