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 8f6aa48 commit ae78ffdCopy full SHA for ae78ffd
Parser/tokenizer.c
@@ -1042,11 +1042,13 @@ tok_nextc(struct tok_state *tok)
1042
else {
1043
rc = tok_underflow_file(tok);
1044
}
1045
+#if defined(Py_DEBUG)
1046
if (Py_DebugFlag) {
1047
printf("line[%d] = ", tok->lineno);
1048
print_escape(stdout, tok->cur, tok->inp - tok->cur);
1049
printf(" tok->done = %d\n", tok->done);
1050
1051
+#endif
1052
if (!rc) {
1053
tok->cur = tok->inp;
1054
return EOF;
0 commit comments