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 eric.smith
Recipients abbeyj, eric.smith, mark.dickinson
Date 2009-06-05.11:34:06
SpamBayes Score 2.704719e-06
Marked as misclassified No
Message-id <1244201648.08.0.883511460204.issue6198@psf.upfronthosting.co.za>
In-reply-to
Content
I had to remove a bunch of tests. Some were of the form
"<even-number>5", rounded to before the 5. Some were comparing a large
number of digits.

Then there's these:
%#.0g 0 -> 0.         Got '0.0'
%#.1g 0 -> 0.         Got '0.0'
%#.2g 0 -> 0.0        Got '0.00'
%#.3g 0 -> 0.00       Got '0.000'
%#.4g 0 -> 0.000      Got '0.0000'

I'm going to remove these, too, since they're all based on underlying
printf differences. But they seem like a bigger problem than the other
cases.
History
Date User Action Args
2009-06-05 11:34:08eric.smithsetrecipients: + eric.smith, mark.dickinson, abbeyj
2009-06-05 11:34:08eric.smithsetmessageid: <1244201648.08.0.883511460204.issue6198@psf.upfronthosting.co.za>
2009-06-05 11:34:06eric.smithlinkissue6198 messages
2009-06-05 11:34:06eric.smithcreate