diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-12-19 06:46:01 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-12-19 06:46:01 (GMT) |
commit | 619555d77bba05c71d9ef0a1c29ec53a17ebe2ca (patch) | |
tree | e1771befdcd8c9fbaa9b67d6830670e99873f226 /Python/errors.c | |
parent | 879199ba11947d9765b06806df54566fde75d498 (diff) | |
parent | ca3263c50c3b3a3719d2ec3ee7b30b8c669dcb19 (diff) | |
download | cpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.zip cpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.tar.gz cpython-619555d77bba05c71d9ef0a1c29ec53a17ebe2ca.tar.bz2 |
Issue #25677: Merge SyntaxError caret positioning from 3.5
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 5 |
1 files changed, 1 insertions, 4 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; |