You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When inserting a debugger() call into a user program, a Bdb exception occurs if the debugger is exited while the program still running. This is very likely because the debugger() call is implemented using the pdb module rather than by subclassing Bdb (or possibly subclassing Pdb). In any case, the additional exception is confusing and needs to be eliminated.
The text was updated successfully, but these errors were encountered:
When inserting a debugger() call into a user program, a Bdb exception occurs if the debugger is exited while the program still running. This is very likely because the debugger() call is implemented using the pdb module rather than by subclassing Bdb (or possibly subclassing Pdb). In any case, the additional exception is confusing and needs to be eliminated.
The text was updated successfully, but these errors were encountered: