(value, criteria_pattern)
| 348 | |
| 349 | |
| 350 | def ninside(value, criteria_pattern): |
| 351 | if criteria_pattern is None: |
| 352 | return False |
| 353 | |
| 354 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 355 | return value not in criteria_pattern |
| 356 | |
| 357 | |
| 358 | def ensure_operators_are_strings(value, criteria_pattern): |
nothing calls this directly
no test coverage detected