diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-09-20 23:02:10 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-09-20 23:02:10 +0000 |
commit | c9651975ec1a9b373c4da03a83f5e5abe12b23b9 (patch) | |
tree | 78dbb3cebb09df5f6cb82075743b969df993d18a /Python/future.c | |
parent | e31f95fa42b68665be8fdab393a12ec091d6e506 (diff) | |
download | cpython-c9651975ec1a9b373c4da03a83f5e5abe12b23b9.tar.gz |
add column offset to all syntax errors
Diffstat (limited to 'Python/future.c')
-rw-r--r-- | Python/future.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Python/future.c b/Python/future.c index 515dcd9dc6..551edc6085 100644 --- a/Python/future.c +++ b/Python/future.c @@ -44,12 +44,12 @@ future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) } else if (strcmp(feature, "braces") == 0) { PyErr_SetString(PyExc_SyntaxError, "not a chance"); - PyErr_SyntaxLocation(filename, s->lineno); + PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); return 0; } else { PyErr_Format(PyExc_SyntaxError, UNDEFINED_FUTURE_FEATURE, feature); - PyErr_SyntaxLocation(filename, s->lineno); + PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); return 0; } } @@ -98,8 +98,7 @@ future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) if (done) { PyErr_SetString(PyExc_SyntaxError, ERR_LATE_FUTURE); - PyErr_SyntaxLocation(filename, - s->lineno); + PyErr_SyntaxLocationEx(filename, s->lineno, s->col_offset); return 0; } if (!future_check_features(ff, s, filename)) |