(flist, skip)
| 299 | # Return a copy with items that occur in skip removed. |
| 300 | # |
| 301 | def _filter(flist, skip): |
| 302 | return list(filterfalse(skip.__contains__, flist)) |
| 303 | |
| 304 | |
| 305 | # Demonstration and testing. |
no test coverage detected
searching dependent graphs…