This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author phr
Recipients
Date 2001-09-01.21:35:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=72053

Sounds good to me re breaking float pow.  It's doing
something
really weird in 2.2.1 anyway.  pow(3.,500.,7.) returns
2, pow(3,5000,7) returns 2, pow(3.,5000.,7.) returns 4.0,
but 3.**5000. returns inf.  pow(3.,50000.,7.) returns NaN.

The roundoff errors though don't bother me especially
more than any other float roundoff errors, e.g.
 3.**99+1-3.**99 = 0.

History
Date User Action Args
2007-08-23 13:56:04adminlinkissue457066 messages
2007-08-23 13:56:04admincreate