Interactive debugging scripts using PythonScript plugin
-
How can I do interactive debugging of python scripts using PythonScript plugin?
-
@Stefano-Orlando
PythonScript doesn’t offer any special faculty for interactive debugging; you just have to use whatever faculties are built into the Python library, like logging and good old-fashionedprint
statements. -
@Mark-Olson I already knew that I could use print and other passive mechanisms like logging. I tried with pdb and the script seems to get on break, an error message missing stdin is displayed on the console but I can’t find a way to enter commands for pdb