(value, criteria_pattern)
| 213 | |
| 214 | |
| 215 | def startswith(value, criteria_pattern): |
| 216 | if criteria_pattern is None: |
| 217 | return False |
| 218 | |
| 219 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 220 | return value.startswith(criteria_pattern) |
| 221 | |
| 222 | |
| 223 | def istartswith(value, criteria_pattern): |
nothing calls this directly
no test coverage detected