(test)
| 9 | |
| 10 | |
| 11 | def match_test(test): |
| 12 | # Function used by support.run_unittest() and regrtest --list-cases |
| 13 | result = False |
| 14 | for matcher, result in reversed(_test_matchers): |
| 15 | if matcher(test.id()): |
| 16 | return result |
| 17 | return not result |
| 18 | |
| 19 | |
| 20 | def _is_full_match_test(pattern): |
searching dependent graphs…