(iline)
| 543 | return parser |
| 544 | |
| 545 | def get_includes(iline): |
| 546 | iline = (' '.join(iline)).split() |
| 547 | parser = include_parser() |
| 548 | args, remain = parser.parse_known_args(iline) |
| 549 | ipaths = args.include_paths |
| 550 | if args.include_paths is None: |
| 551 | ipaths = [] |
| 552 | return ipaths, remain |
| 553 | |
| 554 | def make_f2py_compile_parser(): |
| 555 | parser = argparse.ArgumentParser(add_help=False) |
no test coverage detected