(value, criteria_pattern)
| 229 | |
| 230 | |
| 231 | def endswith(value, criteria_pattern): |
| 232 | if criteria_pattern is None: |
| 233 | return False |
| 234 | |
| 235 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 236 | return value.endswith(criteria_pattern) |
| 237 | |
| 238 | |
| 239 | def iendswith(value, criteria_pattern): |
nothing calls this directly
no test coverage detected