blob: 6929f5e15cab2ab8ce95e8187286d78e20e51603 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# static python static checker
# python3-flake8 (pyflakes + python3-pep8)
# pylint3
#@python3.5 -m flake8 wqueue2.py => does not support async keyword for now
q=
test:
$(Q)python3.5 -m pep8 --first .
$(Q)PYTHONASYNCIODEBUG=1 PYTHONUNBUFFERED=1 python3.5 -Wdefault ./wqueue2.py
|