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