2018-02-22 05:09:13 +01:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-02-22 05:09:13 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2018-02-27 08:32:19 +01:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2018-02-22 05:09:13 +01:00
|
|
|
with open(path, 'r') as path_fd:
|
|
|
|
for line, text in enumerate(path_fd.readlines()):
|
|
|
|
match = re.search(r'(isinstance.*basestring)', text)
|
|
|
|
|
|
|
|
if match:
|
|
|
|
print('%s:%d:%d: do not use `isinstance(s, basestring)`' % (
|
|
|
|
path, line + 1, match.start(1) + 1))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|