(
a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False
)
| 2441 | @comparison_op |
| 2442 | @_operator_fn |
| 2443 | def iendswith_op( |
| 2444 | a: Any, b: Any, escape: Optional[str] = None, autoescape: bool = False |
| 2445 | ) -> Any: |
| 2446 | return _escaped_like_impl(a.iendswith, b, escape, autoescape) |
| 2447 | |
| 2448 | |
| 2449 | @comparison_op |
nothing calls this directly
no test coverage detected