diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-11 00:18:36 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-11 00:18:36 (GMT) |
commit | ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19 (patch) | |
tree | e18938b9e8d57f43e11c013c5d633fd64d9aca65 /Python/pythonrun.c | |
parent | b94eef2ae3737b1f03452a30d5c96640c838dc46 (diff) | |
download | cpython-ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19.zip cpython-ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19.tar.gz cpython-ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19.tar.bz2 |
Issue #25677: Correct syntax error caret for indented blocks.
Based on patch by Michael Layzell.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 72b6c9b..90cb2de 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -528,7 +528,7 @@ print_error_text(PyObject *f, int offset, PyObject *text_obj) offset -= (int)(nl+1-text); text = nl+1; } - while (*text == ' ' || *text == '\t') { + while (*text == ' ' || *text == '\t' || *text == '\f') { text++; offset--; } |