(
a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)
| 2405 | @comparison_op |
| 2406 | @_operator_fn |
| 2407 | def not_istartswith_op( |
| 2408 | a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False |
| 2409 | ) -> Any: |
| 2410 | return ~_escaped_like_impl(a.istartswith, b, escape, autoescape) |
| 2411 | |
| 2412 | |
| 2413 | @comparison_op |
nothing calls this directly
no test coverage detected