Message315

Author nobody
Recipients
Date 2001-05-31.11:54:28
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
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
History
Date User Action Args
2008-02-20 17:16:50adminlinkissue428971 messages
2008-02-20 17:16:50admincreate