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

Function _cli_parse

Tools/c-analyzer/c_parser/__main__.py:156–166  ·  view source on GitHub ↗
(parser, excluded=None, **prepr_kwargs)

Source from the content-addressed store, hash-verified

154# the commands
155
156def _cli_parse(parser, excluded=None, **prepr_kwargs):
157 process_output = add_output_cli(parser)
158 process_kinds = add_kind_filtering_cli(parser)
159 process_preprocessor = add_preprocessor_cli(parser, **prepr_kwargs)
160 process_files = add_files_cli(parser, excluded=excluded)
161 return [
162 process_output,
163 process_kinds,
164 process_preprocessor,
165 process_files,
166 ]
167
168
169def cmd_parse(filenames, *,

Callers

nothing calls this directly

Calls 3

add_kind_filtering_cliFunction · 0.90
add_files_cliFunction · 0.90
add_output_cliFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…