()
| 536 | setattr(namespace, 'include_paths', list(include_paths_set)) |
| 537 | |
| 538 | def include_parser(): |
| 539 | parser = argparse.ArgumentParser(add_help=False) |
| 540 | parser.add_argument("-I", dest="include_paths", action=CombineIncludePaths) |
| 541 | parser.add_argument("--include-paths", dest="include_paths", action=CombineIncludePaths) |
| 542 | parser.add_argument("--include_paths", dest="include_paths", action=CombineIncludePaths) |
| 543 | return parser |
| 544 | |
| 545 | def get_includes(iline): |
| 546 | iline = (' '.join(iline)).split() |