Replies: 1 comment 5 replies
-
I'm not sure because I haven't followed every change here, but this sounds like a change to the underlying standard library |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
consider this code with an obvious exception:
I press n once to advance the code to
await has_an_error()
and if I press n again, then pudb breaks automatically and jumps into the function that raised the error. This is a behaviour that did not occur with older pudb versions like 2022.1.1, as instead of breaking and jumping into the failing line, it would only show me that an exception was raised (and I would press e to inspect t he exception) and I would remain where I was. This is bothersome because I sometimes know that the call has an exception and I want to debug the exception handler, so I don't to jump into the function that raises the error and specially with asyncio, depending how you started the task, you might not be able to come back to the same place again without restarting everything.I don't see any obvious option on the configuration (when pressing ctrl-p). How can I get the old behaviour?
Beta Was this translation helpful? Give feedback.
All reactions