summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-12-11 00:18:36 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-12-11 00:18:36 +0000
commitca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19 (patch)
treee18938b9e8d57f43e11c013c5d633fd64d9aca65 /Python/pythonrun.c
parentb94eef2ae3737b1f03452a30d5c96640c838dc46 (diff)
downloadcpython-git-ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19.tar.gz
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 72b6c9b060..90cb2de27c 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--;
}