(value, criteria_pattern)
| 168 | |
| 169 | |
| 170 | def nequals(value, criteria_pattern): |
| 171 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 172 | return value != criteria_pattern |
| 173 | |
| 174 | |
| 175 | def iequals(value, criteria_pattern): |
nothing calls this directly
no test coverage detected