Author tim_one
Recipients
Date 2006-08-20.16:52:20
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Note that Python doesn't have complex literals, only
imaginary literals:  1+2j is the integer 1 added to the
imaginary literal 2j.  IOW, it's the same as (1)+(2j) = 1 +
complex(0, 2).  Everything follows from that; e.g.,
0+1+2j.imag is parsed as (0+1)+(2j.imag) = 1 + 2.0 = 3.0.
History
Date User Action Args
2007-08-23 14:42:09adminlinkissue1543347 messages
2007-08-23 14:42:09admincreate