summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-12-19 06:46:01 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-12-19 06:46:01 (GMT)
commit619555d77bba05c71d9ef0a1c29ec53a17ebe2ca (patch)
treee1771befdcd8c9fbaa9b67d6830670e99873f226 /Python
parent879199ba11947d9765b06806df54566fde75d498 (diff)
parentca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19 (diff)
downloadcpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.zip
cpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.tar.gz
cpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.tar.bz2
Issue #25677: Merge SyntaxError caret positioning from 3.5
Diffstat (limited to 'Python')
-rw-r--r--Python/errors.c5
-rw-r--r--Python/pythonrun.c2
2 files changed, 2 insertions, 5 deletions
diff --git a/Python/errors.c b/Python/errors.c
index fd6c42f..6095843 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -1144,11 +1144,8 @@ err_programtext(FILE *fp, int lineno)
}
fclose(fp);
if (i == lineno) {
- char *p = linebuf;
PyObject *res;
- while (*p == ' ' || *p == '\t' || *p == '\014')
- p++;
- res = PyUnicode_FromString(p);
+ res = PyUnicode_FromString(linebuf);
if (res == NULL)
PyErr_Clear();
return res;
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index c881f90..8befa54 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--;
}