(iline)
| 554 | return parser |
| 555 | |
| 556 | def get_newer_options(iline): |
| 557 | iline = (' '.join(iline)).split() |
| 558 | parser = f2py_parser() |
| 559 | args, remain = parser.parse_known_args(iline) |
| 560 | ipaths = args.include_paths |
| 561 | if args.include_paths is None: |
| 562 | ipaths = [] |
| 563 | return ipaths, args.ftcompat, remain |
| 564 | |
| 565 | def make_f2py_compile_parser(): |
| 566 | parser = argparse.ArgumentParser(add_help=False) |
no test coverage detected
searching dependent graphs…