There was an error while loading. Please reload this page.
1 parent 0c8ee60 commit 6f80562Copy full SHA for 6f80562
1 file changed
Parser/tokenizer.c
@@ -1508,7 +1508,7 @@ tok_get(struct tok_state *tok, char **p_start, char **p_end)
1508
/* Identifier (most frequent token!) */
1509
nonascii = 0;
1510
if (is_potential_identifier_start(c)) {
1511
- /* Process b"", r"", u"", br"" and rb"" */
+ /* Process the various legal combinations of b"", r"", u"", and f"". */
1512
int saw_b = 0, saw_r = 0, saw_u = 0, saw_f = 0;
1513
while (1) {
1514
if (!(saw_b || saw_u || saw_f) && (c == 'b' || c == 'B'))
0 commit comments