Lazy evaluation during debug #1189
Unanswered
benmatwil
asked this question in
Enhancements
Replies: 2 comments
-
To clarify, this would be a kind of flag (e.g. in launch.json) that would make it so that no variable shows its value by default, and you have to click or expand something to cause eval? Or are you thinking of something more fine-grained? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Moving this issue to discussion as an enhancement request for comments and upvotes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would it be possible to have lazy/on demand loading of variables during a debug session similar to the option in pycharm.
For large dataframes, the eager loading of its repr means that stepping through code line by line can be slow when debugging and you receive the warning each time about the slow repr on each line. By only loading the variables on demand, I assume this could alleviate this issue.
Beta Was this translation helpful? Give feedback.
All reactions