Tagged Questions
The pychecker tag has no wiki summary.
63
votes
2answers
9k views
PyLint, PyChecker or PyFlakes?
I would like to get some feedback on these tools on :
features;
adaptability;
ease of use and learning curve.
2
votes
2answers
250 views
Python correctness (i.e., lint) analyzing for Notepad++
Does anyone know of anything like pylint or pychecker for notepad++? Or perhaps how to use pylint in notepad++.
1
vote
1answer
68 views
Is there a good way to apply pychecker/pylint to the python code in Tornado templates?
I am using Tornado 2.0 (Python 2.6.5) to build a simple web app.
Naturally, my Tornado templates contain snippets of Python code. For my non-template code, I am using pychecker and pylint to check ...
0
votes
2answers
90 views
ERROR : No module named “”
I got a small problem using pylint to check my python code.
I use the opencv library in my code, which results in
E: 85: Module 'cv' has no 'MoveWindow' member
errors in my code.
The reason for ...
0
votes
0answers
49 views
Pychecker --keepgoing (import) problem
i encountered the following problem when i use PyChecker on modules with an import that is not existing. I called PyChecker with the --keepgoing and --only flags:
PyChecker --keepgoing --only foo.py
...
0
votes
3answers
188 views
How can I tell Pychecker to ignore an imported library?
One of the modules I import into my python project triggers lots of warnings under Pychecker. Fixing up this external module isn't really an option, so I want to tell Pychecker to ignore it.
Does ...