PyCharm Debugger: How to set a 'go' or 'execution' point above the current step

Hello, I'm an experienced developer but a Python and PyCharm newbie. See my profile if interested. I look forward to interacting with the users and devs as I progress in my understanding of the language and PyCharm. 

Diving into the PyCharm debugger.  Is there a way to set a ‘go’ or ‘execution’ point in the debugger above the current execution line or breakpoint? This would avoid having to rerun the entire method after making a change. It would allow making a change above the current step, setting the execution point on or above the change and then stepping through the change.

0
Hi,
PyCharm, unfortunately, doesn't provide such a feature. 

Python itself allows reloading certain parts of code (https://stackoverflow.com/questions/7912250/load-reload-a-portion-of-code-in-python-without-restarting-main-script), but I'm not sure if it can be utilized by the debugger.

Jupyter notebooks allow making iterative changes on the code cells without rerunning the whole script: https://www.jetbrains.com/help/pycharm/jupyter-notebook-support.html
0

请先登录再写评论。