()
| 546 | namespace.include_paths = list(include_paths_set) |
| 547 | |
| 548 | def f2py_parser(): |
| 549 | parser = argparse.ArgumentParser(add_help=False) |
| 550 | parser.add_argument("-I", dest="include_paths", action=CombineIncludePaths) |
| 551 | parser.add_argument("--include-paths", dest="include_paths", action=CombineIncludePaths) |
| 552 | parser.add_argument("--include_paths", dest="include_paths", action=CombineIncludePaths) |
| 553 | parser.add_argument("--freethreading-compatible", dest="ftcompat", action=argparse.BooleanOptionalAction) |
| 554 | return parser |
| 555 | |
| 556 | def get_newer_options(iline): |
| 557 | iline = (' '.join(iline)).split() |
no outgoing calls
no test coverage detected
searching dependent graphs…