Skip to content

Commit 6f80562

Browse files
committed
Issue #28489: Fix comment in tokenizer.c
Patch by Ryan Gonzalez.
1 parent 0c8ee60 commit 6f80562

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Parser/tokenizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1508,7 +1508,7 @@ tok_get(struct tok_state *tok, char **p_start, char **p_end)
15081508
/* Identifier (most frequent token!) */
15091509
nonascii = 0;
15101510
if (is_potential_identifier_start(c)) {
1511-
/* Process b"", r"", u"", br"" and rb"" */
1511+
/* Process the various legal combinations of b"", r"", u"", and f"". */
15121512
int saw_b = 0, saw_r = 0, saw_u = 0, saw_f = 0;
15131513
while (1) {
15141514
if (!(saw_b || saw_u || saw_f) && (c == 'b' || c == 'B'))

0 commit comments

Comments
 (0)