Hari Krishna Dara <harid...@gmail.com> added the comment: Changing unittest.TestCase.failUnlessEqual() to something like this will be very useful:
def failUnlessEqual(self, first, second, msg=None): """Fail if the two objects are unequal as determined by the '==' operator. Argument msg could optionally include string format operators named "lhs" and "rhs" (e.g., "%(lhs)r") """ if not first == second: raise self.failureException, \ (msg or "%(lhs)r != %(rhs)r") % dict(lhs=10, rhs=20) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue6966> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com