MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / ne_

Function ne_

lib/sqlalchemy/testing/assertions.py:289–291  ·  view source on GitHub ↗

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

(a, b, msg=None)

Source from the content-addressed store, hash-verified

287
288
289def 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
294def le_(a, b, msg=None):

Calls

no outgoing calls