New submission from Benjamin Peterson <[EMAIL PROTECTED]>: 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(...) ---------- components: Library (Lib) messages: 65132 nosy: benjamin.peterson severity: normal status: open title: Figure out what to do with unittest's redundant APIs type: feature request versions: Python 3.0 __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2578> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com