(value, criteria_pattern)
| 257 | |
| 258 | |
| 259 | def match_wildcard(value, criteria_pattern): |
| 260 | if criteria_pattern is None: |
| 261 | return False |
| 262 | |
| 263 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 264 | return fnmatch.fnmatch(value, criteria_pattern) |
| 265 | |
| 266 | |
| 267 | def match_regex(value, criteria_pattern): |
nothing calls this directly
no test coverage detected