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 xdegaye
Recipients chengyang, paul.moore, steve.dower, tim.golden, xdegaye, zach.ware
Date 2019-12-21.13:27:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576934830.95.0.909274205222.issue39052@roundup.psfhosted.org>
In-reply-to
Content
As a workaround insert the following hard-coded breakpoint before the import statement and run your script with python, i.e. 'python myhome.py' instead of 'python -m pdb myhome.p'.

from pdb import Pdb; Pdb(skip=['importlib*']).set_trace()
History
Date User Action Args
2019-12-21 13:27:11xdegayesetrecipients: + xdegaye, paul.moore, tim.golden, zach.ware, steve.dower, chengyang
2019-12-21 13:27:10xdegayesetmessageid: <1576934830.95.0.909274205222.issue39052@roundup.psfhosted.org>
2019-12-21 13:27:10xdegayelinkissue39052 messages
2019-12-21 13:27:10xdegayecreate