Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e78c5d0

Browse files
committed
ignore control-l (parallelling change to tokenizer.c)
1 parent aaf1839 commit e78c5d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/traceback.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ tb_displayline(f, filename, lineno, name)
212212
}
213213
if (i == lineno) {
214214
char *p = linebuf;
215-
while (*p == ' ' || *p == '\t')
215+
while (*p == ' ' || *p == '\t' || *p == '\014')
216216
p++;
217217
writestring(" ", f);
218218
writestring(p, f);

0 commit comments

Comments
 (0)