Home | History | Annotate | Download | only in unittest

Lines Matching full:expr1

814     def assertIs(self, expr1, expr2, msg=None):
816 if expr1 is not expr2:
817 standardMsg = '%s is not %s' % (safe_repr(expr1),
821 def assertIsNot(self, expr1, expr2, msg=None):
823 if expr1 is expr2:
824 standardMsg = 'unexpectedly identical: %s' % (safe_repr(expr1),)