(filename, *,
match_kind=None,
get_file_preprocessor=None,
file_maxsizes=None,
)
| 4 | |
| 5 | |
| 6 | def parse_file(filename, *, |
| 7 | match_kind=None, |
| 8 | get_file_preprocessor=None, |
| 9 | file_maxsizes=None, |
| 10 | ): |
| 11 | if get_file_preprocessor is None: |
| 12 | get_file_preprocessor = _get_preprocessor() |
| 13 | yield from _parse_file( |
| 14 | filename, match_kind, get_file_preprocessor, file_maxsizes) |
| 15 | |
| 16 | |
| 17 | def parse_files(filenames, *, |
nothing calls this directly
no test coverage detected
searching dependent graphs…