[issue31121] Unable to exit pdb when script becomes invalid

2020-11-16 Thread Andrey Bienkowski
Andrey Bienkowski added the comment: Another way to reproduce this that will continue to work once #42383 is fixed is to delete or move the script while it's being debugged. -- nosy: +hexagonrecursion ___ Python tracker

[issue31121] Unable to exit pdb when script becomes invalid

2017-08-05 Thread Xavier de Gaye
Changes by Xavier de Gaye : -- nosy: +xdegaye ___ Python tracker ___ ___ Python-bugs-list

[issue31121] Unable to exit pdb when script becomes invalid

2017-08-04 Thread Jason R. Coombs
New submission from Jason R. Coombs: Similar to #16180 and possible a duplicate of #14743, if the script being run under pdb becomes invalid such as through a chdir operation, pdb will get trapped in a loop, catching its own exception. $ mkdir foo $ cat > foo/script.py import os