Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checking Python code correctness

In C++ I have compiler that tell me if something wrong with my code after refactoring. How to make sure that Python code is at least correct after changes? There may be some stupid error like wrong function name etc. that pretty easy to find in compile time.

Thanks

like image 283
bocco Avatar asked Sep 11 '09 11:09

bocco


1 Answers

Looks like PyChecker or pylint are what you're looking for

like image 107
oggy Avatar answered Sep 30 '22 06:09

oggy