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 Jacek.Pliszka
Recipients Jacek.Pliszka
Date 2016-04-18.07:47:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460965664.24.0.92280915097.issue26794@psf.upfronthosting.co.za>
In-reply-to
Content
In /usr/lib64/python2.7/pdb.py in
Pdb.default there is line:

globals = self.curframe.f_globals

curframe can be None so the line should be replaced by:

globals = getattr(self.curframe, "f_globals", None) if hasattr(self, 'curframe') else None

or something should be done in different way in setup
History
Date User Action Args
2016-04-18 07:47:44Jacek.Pliszkasetrecipients: + Jacek.Pliszka
2016-04-18 07:47:44Jacek.Pliszkasetmessageid: <1460965664.24.0.92280915097.issue26794@psf.upfronthosting.co.za>
2016-04-18 07:47:44Jacek.Pliszkalinkissue26794 messages
2016-04-18 07:47:43Jacek.Pliszkacreate