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 pitrou
Recipients mark.dickinson, pitrou
Date 2009-03-29.14:15:46
SpamBayes Score 0.00020622856
Marked as misclassified No
Message-id <1238336147.68.0.440864505168.issue5593@psf.upfronthosting.co.za>
In-reply-to
Content
I think it would be sufficient to invoke the addition through a helper
function, that is:

def add(x, y):
    return x + y

if add(1e16, 2.0) != add(1e16, 2.9999):
    return

Also, instead of "return", you might use the new "raise
unittest.SkipTest('some message')".
History
Date User Action Args
2009-03-29 14:15:47pitrousetrecipients: + pitrou, mark.dickinson
2009-03-29 14:15:47pitrousetmessageid: <1238336147.68.0.440864505168.issue5593@psf.upfronthosting.co.za>
2009-03-29 14:15:46pitroulinkissue5593 messages
2009-03-29 14:15:46pitroucreate