Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ _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
#
301
def
_filter(flist, skip):
302
return
list(filterfalse(skip.__contains__, flist))
303
304
305
# Demonstration and testing.
Callers
1
phase0
Method · 0.85
Calls
2
list
Class · 0.85
filterfalse
Function · 0.85
Tested by
no test coverage detected