We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276468d commit 86dfb55Copy full SHA for 86dfb55
Parser/tokenizer.c
@@ -1043,11 +1043,13 @@ tok_nextc(struct tok_state *tok)
1043
else {
1044
rc = tok_underflow_file(tok);
1045
}
1046
+#if defined(Py_DEBUG)
1047
if (Py_DebugFlag) {
1048
printf("line[%d] = ", tok->lineno);
1049
print_escape(stdout, tok->cur, tok->inp - tok->cur);
1050
printf(" tok->done = %d\n", tok->done);
1051
1052
+#endif
1053
if (!rc) {
1054
tok->cur = tok->inp;
1055
return EOF;
0 commit comments