This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ppperry
Recipients brett.cannon, cheryl.sabella, eric.snow, ncoghlan, piscvau@yahoo.fr, ppperry, taleinat, terry.reedy, xtreak
Date 2018-09-23.15:13:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537715630.18.0.956365154283.issue34609@psf.upfronthosting.co.za>
In-reply-to
Content
The Pdb bug and the IDLE bug are unrelated to each other:

   Pdb fails because it is attempting to import the readline module every time its `trace_dispatch` is called, and the import implementation is not reentrant in that way.

   IDLE is crashing because the uninitialized _ModuleLock instance raised an error when `repr` is called, and the IDLE debugger lacks code to catch that exception.
History
Date User Action Args
2018-09-23 15:13:50ppperrysetrecipients: + ppperry, brett.cannon, terry.reedy, ncoghlan, taleinat, eric.snow, cheryl.sabella, xtreak, piscvau@yahoo.fr
2018-09-23 15:13:50ppperrysetmessageid: <1537715630.18.0.956365154283.issue34609@psf.upfronthosting.co.za>
2018-09-23 15:13:50ppperrylinkissue34609 messages
2018-09-23 15:13:50ppperrycreate