You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One important optimization is that pydevd can skip tracing completely for frames if the frames does not have a breakpoint.
This is only working partially when using the DAP with pydevd because the function name is not being passed (so, it will only completely skip a context if there's no breakpoint in the file, not in a particular frame).
To fix this, when using the DAP it should load the file, get the AST and compute the frame name.
The text was updated successfully, but these errors were encountered:
One important optimization is that
pydevd
can skip tracing completely for frames if the frames does not have a breakpoint.This is only working partially when using the DAP with
pydevd
because the function name is not being passed (so, it will only completely skip a context if there's no breakpoint in the file, not in a particular frame).To fix this, when using the DAP it should load the file, get the AST and compute the frame name.
The text was updated successfully, but these errors were encountered: