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 mark.dickinson
Recipients ezio.melotti, mark.dickinson, mdonolo, tim.peters
Date 2009-12-19.17:37:39
SpamBayes Score 0.039472185
Marked as misclassified No
Message-id <1261244261.96.0.0426197766183.issue7534@psf.upfronthosting.co.za>
In-reply-to
Content
There were two incorrect tests in float_pow_testcases.patch:

+            self.assertEqualAndEqualSign(pow_op(-INF, -0.5), -0.0)
+            self.assertEqualAndEqualSign(pow_op(-INF, -2.0), -0.0)

these should both have had 0.0 in place of -0.0.  Here are corrected and 
slightly expanded tests;  I've also fixed an incorrect doctest (0**nan 
should be nan, not 0) in Lib/test/ieee754.txt.
History
Date User Action Args
2009-12-19 17:37:42mark.dickinsonsetrecipients: + mark.dickinson, tim.peters, ezio.melotti, mdonolo
2009-12-19 17:37:41mark.dickinsonsetmessageid: <1261244261.96.0.0426197766183.issue7534@psf.upfronthosting.co.za>
2009-12-19 17:37:40mark.dickinsonlinkissue7534 messages
2009-12-19 17:37:40mark.dickinsoncreate