mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
ignore control-l (parallelling change to tokenizer.c)
This commit is contained in:
parent
aaf18390ee
commit
e78c5d0a16
1 changed files with 1 additions and 1 deletions
|
|
@ -212,7 +212,7 @@ tb_displayline(f, filename, lineno, name)
|
||||||
}
|
}
|
||||||
if (i == lineno) {
|
if (i == lineno) {
|
||||||
char *p = linebuf;
|
char *p = linebuf;
|
||||||
while (*p == ' ' || *p == '\t')
|
while (*p == ' ' || *p == '\t' || *p == '\014')
|
||||||
p++;
|
p++;
|
||||||
writestring(" ", f);
|
writestring(" ", f);
|
||||||
writestring(p, f);
|
writestring(p, f);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue