-
Notifications
You must be signed in to change notification settings - Fork 435
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
Inspect local variables #77
Comments
This adds the ability to show the local variables for each frame when showing the stack trace with the dump command. Currently we only support str/float/int /bool/nonetype/list/tuple/dict objects - everything else will just show the type and address. (#77). Dictionary processing also currently only works for python 3.6+, everything else will show a 'dict' object instead. This also adds the ability to show the thead names for each thread during dump. Since this relies on a bunch of dictionary lookups, this also only works for python 3.6+ (#47)
I've added some basic ability to do this in #176 - if you pass in |
This adds the ability to show the local variables for each frame when showing the stack trace with the dump command. Currently we only support str/float/int /bool/nonetype/list/tuple/dict objects - everything else will just show the type and address. (#77). Dictionary processing also currently only works for python 3.6+, everything else will show a 'dict' object instead. This also adds the ability to show the thead names for each thread during dump. Since this relies on a bunch of dictionary lookups, this also only works for python 3.6+ (#47)
This adds the ability to show the local variables for each frame when showing the stack trace with the dump command. Currently we only support str/float/int /bool/nonetype/list/tuple/dict objects - everything else will just show the type and address. (#77). Dictionary processing also currently only works for python 3.6+, everything else will show a 'dict' object instead. This also adds the ability to show the thead names for each thread during dump. Since this relies on a bunch of dictionary lookups, this also only works for python 3.6+ (#47)
@benfred thank you very much! |
uggh - just tried this out on Linux and there are some remaining issues so I'm reopening this:
|
fix is here: #180 |
First: Thank you very much for this great tool.
Is it possible to look at the local variables of a frame?
This would be awesome.
In my case I see that a django process is executing a sql statement which takes long.
It would be very nice if I could see the sql statement.
What do you think?
The text was updated successfully, but these errors were encountered: