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

Function ne_

lib/sqlalchemy/testing/assertions.py:295–297  ·  view source on GitHub ↗

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 """Assert a != b, with repr messaging on failure."""
297 assert a != b, msg or "%r == %r" % (a, b)
298
299
300def le_(a, b, msg=None):

Calls

no outgoing calls