[issue36663] pdb: store whole exception information in locals (via user_exception)

2021-07-04 Thread Irit Katriel
Irit Katriel added the comment: As mentioned above, I think this is redundant because the traceback is on exc_value.__traceback__. Closing as there was not reply to my question, but correct me if I misunderstood the issue. -- stage: -> resolved status: open -> closed __

[issue36663] pdb: store whole exception information in locals (via user_exception)

2021-06-12 Thread Irit Katriel
Irit Katriel added the comment: Isn't it enough that the traceback is available on exc_value.__traceback__? -- nosy: +iritkatriel ___ Python tracker ___ __

[issue36663] pdb: store whole exception information in locals (via user_exception)

2019-04-18 Thread daniel hahler
New submission from daniel hahler : Currently Pdb.user_exception does not store the traceback in "user_exception", but only passes it to `interaction`: def user_exception(self, frame, exc_info): """This function is called if an exception occurs, but only if we are to stop a