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 haridsv
Recipients haridsv, michael.foord, tuben
Date 2010-06-18.01:44:35
SpamBayes Score 0.07426514
Marked as misclassified No
Message-id <1276825477.12.0.951688242432.issue6966@psf.upfronthosting.co.za>
In-reply-to
Content
Oops... the dict part should have been "dict(lhs=first, rhs=second)":

    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=first, rhs=second)
History
Date User Action Args
2010-06-18 01:44:37haridsvsetrecipients: + haridsv, tuben, michael.foord
2010-06-18 01:44:37haridsvsetmessageid: <1276825477.12.0.951688242432.issue6966@psf.upfronthosting.co.za>
2010-06-18 01:44:35haridsvlinkissue6966 messages
2010-06-18 01:44:35haridsvcreate