diff -r eb14ab7db33e -r 01417ca7f2e2 contrib/check-py3-compat.py --- a/contrib/check-py3-compat.py Mon Feb 04 14:22:50 2019 -0800 +++ b/contrib/check-py3-compat.py Mon Feb 04 14:25:00 2019 -0800 @@ -45,7 +45,7 @@ content = fh.read() try: - ast.parse(content) + ast.parse(content, filename=f) except SyntaxError as e: print('%s: invalid syntax: %s' % (f, e)) return