summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-09 18:12:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-09 18:12:49 (GMT)
commit1064a13bb05db8f6e86a3fe780f969fa2919a1d1 (patch)
tree1e5a07de2a552be4a392c1c6dc2d34386daa89b9 /Parser
parent50b82c765f82c45ee317380a5f5f85e23e7fef36 (diff)
downloadcpython-1064a13bb05db8f6e86a3fe780f969fa2919a1d1.zip
cpython-1064a13bb05db8f6e86a3fe780f969fa2919a1d1.tar.gz
cpython-1064a13bb05db8f6e86a3fe780f969fa2919a1d1.tar.bz2
Do not reset the line number because we already set file position to correct
value. (fixes error in patch for issue #18960)
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index a69d788..8530723 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -514,14 +514,6 @@ fp_setreadl(struct tok_state *tok, const char* enc)
readline = _PyObject_GetAttrId(stream, &PyId_readline);
tok->decoding_readline = readline;
- /* The file has been reopened; parsing will restart from
- * the beginning of the file, we have to reset the line number.
- * But this function has been called from inside tok_nextc() which
- * will increment lineno before it returns. So we set it -1 so that
- * the next call to tok_nextc() will start with tok->lineno == 0.
- */
- tok->lineno = -1;
-
cleanup:
Py_XDECREF(stream);
Py_XDECREF(io);