(kind, *, _excluded=excluded)
| 396 | if included: |
| 397 | ... # XXX fail? |
| 398 | def match_kind(kind, *, _excluded=excluded): |
| 399 | return kind not in _excluded |
| 400 | else: |
| 401 | def match_kind(kind, *, _included=included): |
| 402 | return kind in _included |
no outgoing calls
no test coverage detected
searching dependent graphs…