(
a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)
| 2377 | @comparison_op |
| 2378 | @_operator_fn |
| 2379 | def 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 |
nothing calls this directly
no test coverage detected