2017-11-13 17:51:18 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
ASSERT_RE = re.compile(r'.*(?<![-:a-zA-Z#][ -])\bassert\b(?!:).*')
|
|
|
|
|
|
|
|
|
2018-02-20 22:37:23 +01:00
|
|
|
def main():
|
2018-02-27 08:32:19 +01:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2017-11-13 17:51:18 +01:00
|
|
|
with open(path, 'r') as f:
|
|
|
|
for i, line in enumerate(f.readlines()):
|
|
|
|
matches = ASSERT_RE.findall(line)
|
|
|
|
|
|
|
|
if matches:
|
2018-02-20 22:37:23 +01:00
|
|
|
lineno = i + 1
|
|
|
|
colno = line.index('assert') + 1
|
|
|
|
print('%s:%d:%d: raise AssertionError instead of: %s' % (path, lineno, colno, matches[0][colno - 1:]))
|
2017-11-13 17:51:18 +01:00
|
|
|
|
|
|
|
|
2018-02-20 22:37:23 +01:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|