| from __future__ import absolute_import |
| from __future__ import print_function |
| from __future__ import unicode_literals |
| from typing import Optional |
| from typing import Sequence |
| def main(argv=None): # type: (Optional[Sequence[str]]) -> int |
| parser = argparse.ArgumentParser() |
| parser.add_argument('filenames', nargs='*') |
| args = parser.parse_args(argv) |
| for filename in args.filenames: |
| with open(filename, 'rb') as f: |
| ast.parse(f.read(), filename=filename) |
| print('{}: failed parsing with {} {}:'.format( |
| platform.python_implementation(), |
| sys.version.partition(' ')[0], |
| ' ' + traceback.format_exc().replace('\n', '\n '), |
| if __name__ == '__main__': |