(filenames=None, *,
match_kind=None,
ignore_exc=None,
log_err=None,
get_file_preprocessor=None,
**file_kwargs
)
| 404 | |
| 405 | |
| 406 | def parse_files(filenames=None, *, |
| 407 | match_kind=None, |
| 408 | ignore_exc=None, |
| 409 | log_err=None, |
| 410 | get_file_preprocessor=None, |
| 411 | **file_kwargs |
| 412 | ): |
| 413 | if get_file_preprocessor is None: |
| 414 | get_file_preprocessor = get_preprocessor( |
| 415 | ignore_exc=ignore_exc, |
| 416 | log_err=log_err, |
| 417 | ) |
| 418 | yield from _parse_files( |
| 419 | filenames, |
| 420 | match_kind=match_kind, |
| 421 | get_file_preprocessor=get_file_preprocessor, |
| 422 | file_maxsizes=MAX_SIZES, |
| 423 | **file_kwargs |
| 424 | ) |
nothing calls this directly
no test coverage detected
searching dependent graphs…