(
a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)
| 2369 | @comparison_op |
| 2370 | @_operator_fn |
| 2371 | def startswith_op( |
| 2372 | a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False |
| 2373 | ) -> Any: |
| 2374 | return _escaped_like_impl(a.startswith, b, escape, autoescape) |
| 2375 | |
| 2376 | |
| 2377 | @comparison_op |
nothing calls this directly
no test coverage detected