changeset 106438:72ec2c599301

Issue #28489: Merge from 3.6 [#28489]
author Berker Peksag <berker.peksag@gmail.com>
date Sun, 05 Feb 2017 04:33:11 +0300
parents ba0fd8d9084e (current diff) 8b20ed083a94 (diff)
children 09ffaffca750
files Parser/tokenizer.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -1508,7 +1508,7 @@ tok_get(struct tok_state *tok, char **p_
     /* Identifier (most frequent token!) */
     nonascii = 0;
     if (is_potential_identifier_start(c)) {
-        /* Process b"", r"", u"", br"" and rb"" */
+        /* Process the various legal combinations of b"", r"", u"", and f"". */
         int saw_b = 0, saw_r = 0, saw_u = 0, saw_f = 0;
         while (1) {
             if (!(saw_b || saw_u || saw_f) && (c == 'b' || c == 'B'))