MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / not_like_op

Function not_like_op

lib/sqlalchemy/sql/operators.py:2250–2251  ·  view source on GitHub ↗
(a: Any, b: Any, escape: Optional[str] = None)

Source from the content-addressed store, hash-verified

2248@comparison_op
2249@_operator_fn
2250def not_like_op(a: Any, b: Any, escape: Optional[str] = None) -> Any:
2251 return a.notlike(b, escape=escape)
2252
2253
2254# 1.4 deprecated; see #5435

Callers

nothing calls this directly

Calls 1

notlikeMethod · 0.45

Tested by

no test coverage detected