zulip/tools/linter_lib/pyflakes.py

37 lines
1.4 KiB
Python
Raw Normal View History

2017-06-05 16:43:16 +02:00
from __future__ import print_function
from __future__ import absolute_import
import subprocess
2017-07-06 06:52:03 +02:00
from .printer import print_err, colors
2017-06-05 16:43:16 +02:00
from typing import Any, Dict, List
def check_pyflakes(options, by_lang):
# type: (Any, Dict[str, List[str]]) -> bool
if len(by_lang['py']) == 0:
return False
failed = False
2017-07-06 06:52:03 +02:00
color = next(colors)
2017-06-05 16:43:16 +02:00
pyflakes = subprocess.Popen(['pyflakes'] + by_lang['py'],
2017-07-06 06:52:03 +02:00
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
2017-07-06 06:52:03 +02:00
assert pyflakes.stdout is not None # Implied by use of subprocess.PIPE
for ln in pyflakes.stdout.readlines() + pyflakes.stderr.readlines():
2017-07-06 06:52:03 +02:00
if options.full or not (
b'imported but unused' in ln or
b'redefinition of unused' in ln or
# Our ipython startup pythonrc file intentionally imports *
(b"scripts/lib/pythonrc.py" in ln and
b" import *' used; unable to detect undefined names" in ln) or
# Special dev_settings.py import
b"from .prod_settings_template import *" in ln or
(b"settings.py" in ln and
(b"settings import *' used; unable to detect undefined names" in ln or
b"may be undefined, or defined from star imports" in ln))):
2017-06-05 16:43:16 +02:00
2017-07-06 06:52:03 +02:00
print_err('pyflakes', color, ln)
failed = True
2017-06-05 16:43:16 +02:00
return failed