There is a draft written in Python. I am developing it on the Ubuntu platform, in a text editor. What tools should I use to get a step-by-step debugging feature?
3 answers
It may be most convenient to use IDE for Python, for example PyDev (this is a plugin for Eclipse) or PyCharm. There the debugger is integrated. If you are not confused by the console debugger interface, then in the standard Python library there is a pdb module, which is a full-fledged debugger.
- And there is the possibility of debugging via ssh, and it means hashcode.ru/questions/1078/ssh-%D0%B2-pycharm - Nicolas Chabanovsky ♦
- fiveThere is even more convenient than the standard one, called pdbpp. Dev.svetlyak.ru/debugger-with-blackjack is described here in detail here - rastler
|
- pdb , pdb (c) habrahabr.ru
- Any IDE that supports interactive code execution in debug mode with Breakpoints, for example PyCharm
and of course trace trace is not step by step but is very useful in some places.
|
About debuggers inside ide have already said a lot in other answers, but among the console debuggers, pudb with a pseudo-graphic interface (in the spirit of borland turbo s) was unfairly forgotten
|