-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interactive window not showing stack trace #8568
Comments
Thanks for the bug. I had some questions about the issue. Where are you defining and running For me, if I define |
If I define and evaluate |
We should update manualTestFile.py to also include this scenario. Our normal just 'raise Exception' isn't sufficient. |
Root cause of problem:
Example of execution:
When
What code actually corresponds to
This is what is messing up stack walking. This also has the side effect of making stepping into other cells not work. |
#139545 Is same issue |
@jaymegordo Actually that issue is related to this change here: microsoft/vscode#140351. The stack trace not showing (this issue here) still repros even when the errorRenderer.js file loads. I believe Matt's change in VS code insiders should fix #139545. |
I'm still having this issue |
me too. IPython 8.4. can't click on stacktrace to jump to files |
Environment data
Expected behaviour
Upon a crash, the interactive window should show which line from my code is responsible for the crash.
Actual behaviour
The information does not show the line where the exception was raised. Howver it does show the stack trace if it's raised from a package. But it does not display the line of my code which prompted the exception.
The text was updated successfully, but these errors were encountered: