diff options
author | Georg Brandl <georg@python.org> | 2013-10-12 22:57:30 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-12 22:57:30 +0200 |
commit | 32a14662287d30ef58f31b9d20c5226c52b136e8 (patch) | |
tree | df01e180a8d731e54835bdcb0ccfae1d58bf2e14 /Python/errors.c | |
parent | 793d8478eeb1ca73b95aa6dac97361013d9e8b60 (diff) | |
parent | d01d396e7f9db2b3c362fe48a07cd55420dce030 (diff) | |
download | cpython-git-32a14662287d30ef58f31b9d20c5226c52b136e8.tar.gz |
merge
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index b67448090f..1832b5b602 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -1014,7 +1014,7 @@ PyErr_SyntaxLocationEx(const char *filename, int lineno, int col_offset) XXX The functionality of this function is quite similar to the functionality in tb_displayline() in traceback.c. */ -PyObject * +static PyObject * err_programtext(FILE *fp, int lineno) { int i; |