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

Function _parse_incldirs

Tools/c-analyzer/c_parser/preprocessor/__init__.py:155–162  ·  view source on GitHub ↗
(incldirs)

Source from the content-addressed store, hash-verified

153
154
155def _parse_incldirs(incldirs):
156 for row, srcfile in _parse_table(incldirs, '\t', 'glob\tdirname', default=None):
157 glob, dirname = row
158 if dirname is None:
159 # Match all files.
160 dirname = glob
161 row = ('*', dirname.strip())
162 yield row
163
164
165def _resolve_samefiles(filename, file_same):

Callers 1

get_preprocessorFunction · 0.85

Calls 1

stripMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…