|
|
|
|
|
by condiment
4864 days ago
|
|
I'm curious to know how VS compares to PyCharm in terms of how rapidly the Python environment is able to restart after a code refresh. It's been my personal experience that PyCharm's Run/Debug configuration is fast to restart in Run mode, but considerably slower in Debug mode, taking 5-10 seconds to restart and attach the debugger. So while I'd like to be able to work with breakpoints and inspection always available, in practice those tools have been harmful to my productivity. If VS is better or faster in this regard, it might be worth a try. |
|
I prefer to do as much without debugger and then when I need to inspect variables and step through code drop into debug mode.
With Python this may be different but I doubt it. I expect you will have to wait while the debugger loads up. If you can edit code whilst debugger is running then I can see that being a big plus and a reason to keep it on.