Assert a == b, with repr messaging on failure.
(a, b, msg=None)
| 288 | |
| 289 | |
| 290 | def eq_(a, b, msg=None): |
| 291 | """Assert a == b, with repr messaging on failure.""" |
| 292 | assert a == b, msg or "%r != %r" % (a, b) |
| 293 | |
| 294 | |
| 295 | def ne_(a, b, msg=None): |
no outgoing calls