mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Kill u"..." string quotes. Thought I already did that.
This commit is contained in:
parent
b8142c3e64
commit
e5e80b8c56
2 changed files with 2 additions and 10 deletions
|
@ -1227,14 +1227,6 @@ tok_get(register struct tok_state *tok, char **p_start, char **p_end)
|
|||
if (c == '"' || c == '\'')
|
||||
goto letter_quote;
|
||||
break;
|
||||
case 'u':
|
||||
case 'U':
|
||||
c = tok_nextc(tok);
|
||||
if (c == 'r' || c == 'R')
|
||||
c = tok_nextc(tok);
|
||||
if (c == '"' || c == '\'')
|
||||
goto letter_quote;
|
||||
break;
|
||||
case 'b':
|
||||
case 'B':
|
||||
c = tok_nextc(tok);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue