]> granicus.if.org Git - python/commitdiff
Comment grammar
authorAndrew M. Kuchling <amk@amk.ca>
Fri, 6 Oct 2006 18:51:55 +0000 (18:51 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Fri, 6 Oct 2006 18:51:55 +0000 (18:51 +0000)
Parser/tokenizer.c

index c58b6899b37e6b4853c03bcd560d59f0a8252b63..86543567610d02542bb2d881521f4be0523e0331 100644 (file)
@@ -897,7 +897,7 @@ tok_nextc(register struct tok_state *tok)
                                tok->cur = tok->buf + cur;
                                tok->line_start = tok->cur;
                                /* replace "\r\n" with "\n" */
-                               /* For Mac leave the \r, giving syntax error */
+                               /* For Mac leave the \r, giving syntax error */
                                pt = tok->inp - 2;
                                if (pt >= tok->buf && *pt == '\r') {
                                        *pt++ = '\n';