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

Function _flatten_processors

Tools/c-analyzer/c_common/scriptutil.py:478–485  ·  view source on GitHub ↗
(processors)

Source from the content-addressed store, hash-verified

476
477
478def _flatten_processors(processors):
479 for proc in processors:
480 if proc is None:
481 continue
482 if callable(proc):
483 yield proc
484 else:
485 yield from _flatten_processors(proc)
486
487
488def process_args(args, argv, processors, *, keys=None):

Callers 1

process_argsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…