2 questions from the last 30 days
-2
votes
0
answers
40
views
Can I get the Python interpreter to print stack traces with one line per frame rather than two?
When an exception is raised in Python, we get something like:
Location
source line
Location
source line
Location
source line
yet - I would rather have one line per "stack frame", e.g.:...
3
votes
0
answers
52
views
Stack traces for rust lib that is used by C# Visual Studio Project
Im writing a rust lib that is used by my c# Visual Studio project. Visual Studio has the debug symbols loaded for my rust lib. I am able to set a break point in c# and jump into rust.
Yet when rust ...