summaryrefslogtreecommitdiff
path: root/Python/errors.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/errors.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/errors.c')
-rw-r--r--Python/errors.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Python/errors.c b/Python/errors.c
index ebfb3fdf24..b820722dfa 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -1094,11 +1094,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;