Saved Bookmarks
| 1. |
Is there a tool to help find bugs or perform static analysis ? |
|
Answer» Yes, 1. Pychecker is a static analysis tool that finds bugs in Python source code and warns about code complexity and style. 2. Pylint is another tool that checks if a module statisfies a coding standards, and also makes it possible to write plug-ins to add a custom feature. |
|