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

Function _cli_parse

Tools/c-analyzer/cpython/__main__.py:123–136  ·  view source on GitHub ↗
(parser)

Source from the content-addressed store, hash-verified

121
122
123def _cli_parse(parser):
124 process_output = c_parser.add_output_cli(parser)
125 process_kind = add_kind_filtering_cli(parser)
126 process_preprocessor = c_parser.add_preprocessor_cli(
127 parser,
128 get_preprocessor=_parser.get_preprocessor,
129 )
130 process_files = add_files_cli(parser, **FILES_KWARGS)
131 return [
132 process_output,
133 process_kind,
134 process_preprocessor,
135 process_files,
136 ]
137
138
139def cmd_parse(filenames=None, **kwargs):

Callers

nothing calls this directly

Calls 2

add_kind_filtering_cliFunction · 0.90
add_files_cliFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…