Can PyCharm list all Python errors in a project?

I am using python 2.7 in a virtual environment and PyCharm 2.7 (new build since February 2013).

Whenever I open a python file in it that has unambiguous errors (the equivalent of compiling errors in other languages, for example, using undeclared variables, calling non-existent functions), it shows red bars in the file chute.

So, I detect errors randomly when I managed to go to the file that contains them. I would really like you to be able to list all python errors in a separate window. Visual Studio 2005/2008/2010 / ... IDE has a separate view, Errors, which lists all of them with file names and line numbers, and allows me to click on any of these errors and go directly to the source.

Does PyCharm have something like this?

+57
python compiler-errors pycharm
Feb 15 '13 at 19:44
source share
3 answers

You can call Code | Inspect Code (previously analyzed | check code, thanks @ CrackerJack9) to get all errors and warnings and ways to fix them. In the results pane you can see only errors (red / yellow button on the left side).

+70
Feb 15 '13 at 19:46
source share

Yes, run Analyze | Inspect Code and specify the entire project as an area of ​​analysis.

+12
Feb 15 '13 at 19:49
source share

In Pycharm 2.6.3:
Code β†’ Check Code

+6
Aug 27 '13 at 11:56 on
source share



All Articles