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

Function not_startswith_op

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

Source from the content-addressed store, hash-verified

2377@comparison_op
2378@_operator_fn
2379def not_startswith_op(
2380 a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
2381) -> Any:
2382 return ~_escaped_like_impl(a.startswith, b, escape, autoescape)
2383
2384
2385# 1.4 deprecated; see #5435

Callers

nothing calls this directly

Calls 1

_escaped_like_implFunction · 0.85

Tested by

no test coverage detected