2017-11-13 10:51:18 -06:00
|
|
|
#!/usr/bin/env python
|
2019-07-11 23:46:20 -07:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2017-11-13 10:51:18 -06:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
2019-03-08 11:43:02 -08:00
|
|
|
ASSERT_RE = re.compile(r'^\s*assert[^a-z0-9_:]')
|
2017-11-13 10:51:18 -06:00
|
|
|
|
|
|
|
|
2018-02-20 13:37:23 -08:00
|
|
|
def main():
|
2018-02-26 23:32:19 -08:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2017-11-13 10:51:18 -06:00
|
|
|
with open(path, 'r') as f:
|
|
|
|
for i, line in enumerate(f.readlines()):
|
|
|
|
matches = ASSERT_RE.findall(line)
|
|
|
|
|
|
|
|
if matches:
|
2018-02-20 13:37:23 -08: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 10:51:18 -06:00
|
|
|
|
|
|
|
|
2018-02-20 13:37:23 -08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|