]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
ignore control-l (parallelling change to tokenizer.c)
authorGuido van Rossum <guido@python.org>
Fri, 7 Jul 1995 22:45:41 +0000 (22:45 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 7 Jul 1995 22:45:41 +0000 (22:45 +0000)
Python/traceback.c

index bea0b19b57e7608d389474f8e1342603b3d30590..1ab880a91e2704a7a13f49941d59313716110362 100644 (file)
@@ -212,7 +212,7 @@ tb_displayline(f, filename, lineno, name)
        }
        if (i == lineno) {
                char *p = linebuf;
-               while (*p == ' ' || *p == '\t')
+               while (*p == ' ' || *p == '\t' || *p == '\014')
                        p++;
                writestring("    ", f);
                writestring(p, f);