mirror of https://github.com/python/cpython
Don't print the line number for syntax errors in string parsing.
This commit is contained in:
parent
301f1a6f79
commit
326f582763
|
@ -54,10 +54,13 @@ parsestring(s, g, start, n_ret)
|
|||
return E_NOMEM;
|
||||
}
|
||||
ret = parsetok(tok, g, start, n_ret);
|
||||
/*
|
||||
XXX Need a more sophisticated way to report the line number.
|
||||
if (ret == E_TOKEN || ret == E_SYNTAX) {
|
||||
fprintf(stderr, "String parsing error at line %d\n",
|
||||
tok->lineno);
|
||||
}
|
||||
*/
|
||||
tok_free(tok);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue