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

Function check_all

Tools/c-analyzer/c_analyzer/__init__.py:92–105  ·  view source on GitHub ↗
(analysis, checks, *, failfast=False)

Source from the content-addressed store, hash-verified

90# checks
91
92def check_all(analysis, checks, *, failfast=False):
93 for check in checks or ():
94 for data, failure in check(analysis):
95 if failure is None:
96 continue
97
98 yield data, failure
99 if failfast:
100 yield None, None
101 break
102 else:
103 continue
104 # We failed fast.
105 break

Callers

nothing calls this directly

Calls 1

checkFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…