Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
43f42fc3
Commit
43f42fc3
authored
Jun 16, 2012
by
Meador Inge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #15054: Fix incorrect tokenization of 'b' and 'br' string literals.
Patch by Serhiy Storchaka.
parent
7cf66996
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
5 deletions
+34
-5
Lib/test/test_tokenize.py
Lib/test/test_tokenize.py
+25
-0
Lib/tokenize.py
Lib/tokenize.py
+5
-5
Misc/NEWS
Misc/NEWS
+4
-0
No files found.
Lib/test/test_tokenize.py
View file @
43f42fc3
...
...
@@ -278,6 +278,31 @@ String literals
OP '+' (1, 32) (1, 33)
STRING 'UR"ABC"' (1, 34) (1, 41)
>>> dump_tokens("b'abc' + B'abc'")
STRING "b'abc'" (1, 0) (1, 6)
OP '+' (1, 7) (1, 8)
STRING "B'abc'" (1, 9) (1, 15)
>>> dump_tokens('b"abc" + B"abc"')
STRING 'b"abc"' (1, 0) (1, 6)
OP '+' (1, 7) (1, 8)
STRING 'B"abc"' (1, 9) (1, 15)
>>> dump_tokens("br'abc' + bR'abc' + Br'abc' + BR'abc'")
STRING "br'abc'" (1, 0) (1, 7)
OP '+' (1, 8) (1, 9)
STRING "bR'abc'" (1, 10) (1, 17)
OP '+' (1, 18) (1, 19)
STRING "Br'abc'" (1, 20) (1, 27)
OP '+' (1, 28) (1, 29)
STRING "BR'abc'" (1, 30) (1, 37)
>>> dump_tokens('br"abc" + bR"abc" + Br"abc" + BR"abc"')
STRING 'br"abc"' (1, 0) (1, 7)
OP '+' (1, 8) (1, 9)
STRING 'bR"abc"' (1, 10) (1, 17)
OP '+' (1, 18) (1, 19)
STRING 'Br"abc"' (1, 20) (1, 27)
OP '+' (1, 28) (1, 29)
STRING 'BR"abc"' (1, 30) (1, 37)
Operators
>>> dump_tokens("def d22(a, b, c=2, d=2, *k): pass")
...
...
Lib/tokenize.py
View file @
43f42fc3
...
...
@@ -70,10 +70,10 @@ Double = r'[^"\\]*(?:\\.[^"\\]*)*"'
Single3
=
r"[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''"
# Tail end of """ string.
Double3
=
r'[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""'
Triple
=
group
(
"[uU
]?[rR]?'''"
,
'[uU
]?[rR]?"""'
)
Triple
=
group
(
"[uU
bB]?[rR]?'''"
,
'[uUbB
]?[rR]?"""'
)
# Single-line ' or " string.
String
=
group
(
r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'"
,
r'[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*"'
)
String
=
group
(
r"[uU
bB
]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'"
,
r'[uU
bB
]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*"'
)
# Because of leftmost-then-longest match semantics, be sure to put the
# longest operators first (e.g., if = came before ==, == would get
...
...
@@ -91,9 +91,9 @@ PlainToken = group(Number, Funny, String, Name)
Token = Ignore + PlainToken
# First (or only) line of ' or "
string
.
ContStr
=
group
(
r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*"
+
ContStr
=
group
(
r"[uU
bB
]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*"
+
group
(
"'"
,
r'\\\r?\n'
),
r'[uU]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*'
+
r'[uU
bB
]?[rR]?"[^\n"\\]*(?:\\.[^\n"\\]*)*'
+
group
(
'"'
,
r'\\\r?\n'
))
PseudoExtras
=
group
(
r'\\\r?\n'
,
Comment
,
Triple
)
PseudoToken
=
Whitespace
+
group
(
PseudoExtras
,
Number
,
Funny
,
ContStr
,
Name
)
...
...
Misc/NEWS
View file @
43f42fc3
...
...
@@ -67,6 +67,10 @@ Core and Builtins
Library
-------
-
Issue
#
15054
:
A
bug
in
tokenize
.
tokenize
that
caused
string
literals
with
'b'
and
'br'
prefixes
to
be
incorrectly
tokenized
has
been
fixed
.
Patch
by
Serhiy
Storchaka
.
-
Issue
#
15036
:
Allow
removing
or
changing
multiple
items
in
single
-
file
mailboxes
(
mbox
,
MMDF
,
Babyl
)
flushing
the
mailbox
between
the
changes
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment