We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When in a pdb debugger session, a new session (e.g. calling an arbitrary function foo) can be started with (Pdb+) debug foo().
foo
(Pdb+) debug foo()
However, this results in an error:
*** RecursionError: maximum recursion depth exceeded while calling a Python object
The text was updated successfully, but these errors were encountered:
Did the same issue occur with the original Pdb?
Sorry, something went wrong.
No, in the original pdb (or pdbpp) this does not happen. You get this reponse:
ENTERING RECURSIVE DEBUGGER [1] > <string>(1)<module>() ((Pdb++))
So, the cursor gets kind-of "doubled".
No branches or pull requests
When in a pdb debugger session, a new session (e.g. calling an arbitrary function
foo
) can be started with(Pdb+) debug foo()
.However, this results in an error:
The text was updated successfully, but these errors were encountered: