-
I found custom stringifier is strong feature that makes debugging a lot intuitive for some cases. I followed guide on custom stringifier in:
IssueOne pain point: I hope to construct custom stringifier that call default stringifier (below) as fallback, Line 399 in dab821f but it is not clear for me how to do that. Is it possible? Or it would be nice to have such feature. |
Beta Was this translation helpful? Give feedback.
Answered by
inducer
Jun 7, 2022
Replies: 1 comment 1 reply
-
You could simply import the default stringifier, like so: from pudb.var_view import default_stringifier Or am I missing something? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cgbahk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You could simply import the default stringifier, like so:
Or am I missing something?