MCPcopy Index your code
hub / github.com/python/cpython / _filter

Function _filter

Lib/filecmp.py:301–302  ·  view source on GitHub ↗
(flist, skip)

Source from the content-addressed store, hash-verified

299# Return a copy with items that occur in skip removed.
300#
301def _filter(flist, skip):
302 return list(filterfalse(skip.__contains__, flist))
303
304
305# Demonstration and testing.

Callers 1

phase0Method · 0.85

Calls 2

listClass · 0.85
filterfalseFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…