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 jaraco
Recipients brian.curtin, jaraco
Date 2010-01-22.02:08:31
SpamBayes Score 0.0037418364
Marked as misclassified No
Message-id <1264126113.03.0.23438241758.issue7750@psf.upfronthosting.co.za>
In-reply-to
Content
I suspect this patch may fix the problem. I haven't yet had time to test it.

Index: Lib/pdb.py
===================================================================
--- Lib/pdb.py  (revision 77683)
+++ Lib/pdb.py  (working copy)
@@ -1200,7 +1200,7 @@
         self._wait_for_mainpyfile = 1
         self.mainpyfile = self.canonic(filename)
         self._user_requested_quit = 0
-        statement = 'execfile( "%s")' % filename
+        statement = 'execfile(%r)' % filename
         self.run(statement)

 # Simplified interface
History
Date User Action Args
2010-01-22 02:08:33jaracosetrecipients: + jaraco, brian.curtin
2010-01-22 02:08:33jaracosetmessageid: <1264126113.03.0.23438241758.issue7750@psf.upfronthosting.co.za>
2010-01-22 02:08:31jaracolinkissue7750 messages
2010-01-22 02:08:31jaracocreate