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 benjamin.peterson
Recipients benjamin.peterson, brett.cannon
Date 2008-04-26.23:53:15
SpamBayes Score 0.012074321
Marked as misclassified No
Message-id <1209253998.91.0.396170070873.issue2699@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like you can just remove the offending line like so:


Index: Python/traceback.c
===================================================================
--- Python/traceback.c  (revision 62515)
+++ Python/traceback.c  (working copy)
@@ -222,8 +222,7 @@
        err = PyFile_WriteString(linebuf, f);
        if (err != 0)
                return err;
-
-        err = PyFile_WriteString("    ", f);
+
         return Py_DisplaySourceLine(f, filename, lineno);
 }
History
Date User Action Args
2008-04-26 23:53:21benjamin.petersonsetspambayes_score: 0.0120743 -> 0.012074321
recipients: + benjamin.peterson, brett.cannon
2008-04-26 23:53:18benjamin.petersonsetspambayes_score: 0.0120743 -> 0.0120743
messageid: <1209253998.91.0.396170070873.issue2699@psf.upfronthosting.co.za>
2008-04-26 23:53:17benjamin.petersonlinkissue2699 messages
2008-04-26 23:53:16benjamin.petersoncreate