(value, criteria_pattern)
| 197 | |
| 198 | |
| 199 | def ncontains(value, criteria_pattern): |
| 200 | if criteria_pattern is None: |
| 201 | return False |
| 202 | |
| 203 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 204 | return criteria_pattern not in value |
| 205 | |
| 206 | |
| 207 | def incontains(value, criteria_pattern): |
nothing calls this directly
no test coverage detected