diff -r 927c0d84e09f -r bb6936bec727 contrib/import-checker.py --- a/contrib/import-checker.py Tue Sep 01 21:37:51 2015 +0200 +++ b/contrib/import-checker.py Wed Sep 02 16:07:35 2015 -0400 @@ -200,7 +200,10 @@ for name in files: if name == '__init__.py': continue - if not (name.endswith('.py') or name.endswith('.so') + if not (name.endswith('.py') + or name.endswith('.so') + or name.endswith('.pyc') + or name.endswith('.pyo') or name.endswith('.pyd')): continue full_path = os.path.join(top, name)