2019-07-02 18:36:37 +02:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2019-07-02 18:36:37 +02:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
|
|
with open(path, 'rb') as path_fd:
|
|
|
|
lines = path_fd.read().splitlines()
|
|
|
|
|
|
|
|
missing = True
|
|
|
|
if not lines:
|
|
|
|
# Files are allowed to be empty of everything including boilerplate
|
|
|
|
missing = False
|
|
|
|
|
|
|
|
for text in lines:
|
|
|
|
if text == b'__metaclass__ = type':
|
|
|
|
missing = False
|
|
|
|
break
|
|
|
|
|
2019-07-27 00:26:39 +02:00
|
|
|
if missing:
|
2019-07-02 18:36:37 +02:00
|
|
|
print('%s: missing: __metaclass__ = type' % path)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|