Assert a != b, with repr messaging on failure.
(a, b, msg=None)
| 293 | |
| 294 | |
| 295 | def ne_(a, b, msg=None): |
| 296 | """Assert a != b, with repr messaging on failure.""" |
| 297 | assert a != b, msg or "%r == %r" % (a, b) |
| 298 | |
| 299 | |
| 300 | def le_(a, b, msg=None): |
no outgoing calls