Benjamin Peterson <[EMAIL PROTECTED]> added the comment:

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);
 }

----------
nosy: +benjamin.peterson

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2699>
__________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to