Replies: 3 comments
-
Related on StackOverflow:here |
Beta Was this translation helpful? Give feedback.
-
Sorry but I don't think there's anything to be done about this. Python debugging is slow based on how it works. You can read more about it here: And here: Debugpy is implementing the optimizations that Liran talks about. 3.12 may get better though. The CPython runtime has implemented new tracing mechanisms. Debugpy hasn't really updated to using the new way yet, but it's a work in progress |
Beta Was this translation helpful? Give feedback.
-
I agree, debugpy is slower then pycharm debug on same device. |
Beta Was this translation helpful? Give feedback.
-
When debugging with the same piece of code, the time it takes to run the result with
run
is 25.895,and the time it takes to run the result with
debug
is 205.Beta Was this translation helpful? Give feedback.
All reactions