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