diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-19 06:46:12 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-19 06:46:12 (GMT) |
commit | b46edf35f3dea8c828b45d6ae02d2c716dd1d0ea (patch) | |
tree | 0074b12ae7e8aada22b8753d69f66abde9128412 /Python/pythonrun.c | |
parent | 932ee73188c73bbe63834f69566a4f188fbf43a7 (diff) | |
parent | 619555d77bba05c71d9ef0a1c29ec53a17ebe2ca (diff) | |
download | cpython-b46edf35f3dea8c828b45d6ae02d2c716dd1d0ea.zip cpython-b46edf35f3dea8c828b45d6ae02d2c716dd1d0ea.tar.gz cpython-b46edf35f3dea8c828b45d6ae02d2c716dd1d0ea.tar.bz2 |
Issue #25677: Merge SyntaxError caret positioning from 3.6
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 b862e2b..5bddbad 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--; } |