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 benjamin.peterson
Recipients benjamin.peterson
Date 2008-04-08.01:01:24
SpamBayes Score 0.10129055
Marked as misclassified No
Message-id <1207616486.67.0.93583341584.issue2578@psf.upfronthosting.co.za>
In-reply-to
Content
unittest has many redundant APIs (eg. failIf and assertFalse) which can
be phased out in 3.x. We may also want to change the actually methods so
they really do what they say:

if x == y:
   pass
 else:
   raise AssertionError(...)

rather than

 if x != y:
   raise AssertionError(...)
History
Date User Action Args
2008-04-08 01:01:26benjamin.petersonsetspambayes_score: 0.101291 -> 0.10129055
recipients: + benjamin.peterson
2008-04-08 01:01:26benjamin.petersonsetspambayes_score: 0.101291 -> 0.101291
messageid: <1207616486.67.0.93583341584.issue2578@psf.upfronthosting.co.za>
2008-04-08 01:01:25benjamin.petersonlinkissue2578 messages
2008-04-08 01:01:24benjamin.petersoncreate