PyCharm python on the fly debugging
Hi,
I would like to know if it's possible to do on the fly debugging ?
for example changing a word syntax while standing on a break point.
Thank you.
I would like to know if it's possible to do on the fly debugging ?
for example changing a word syntax while standing on a break point.
Thank you.
Please sign in to leave a comment.
It is impossible because Python interpreter does not support methods reloading during the execution of the program.
For example:
x = 5
y = 10 -> brake point
t = 20
is it possible to change t=20 ?
Change is possible only in a module (another file) you did not imported yet (the line “import …” is after the breakpoint).