MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / ne_

Function ne_

lib/sqlalchemy/testing/assertions.py:295–297  ·  lib/sqlalchemy/testing/assertions.py::ne_

Assert a != b, with repr messaging on failure.

(a, b, msg=None)

Source from the content-addressed store, hash-verified

293
294
295def 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
300def le_(a, b, msg=None):

Calls

no outgoing calls