summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-06-17 02:05:50 (GMT)
committerMeador Inge <meadori@gmail.com>2012-06-17 02:05:50 (GMT)
commit43f42fc3cb67433c88e31268767c0cab36422351 (patch)
tree5f378d62132769aa2c1c2fe4d5d9cf94784c3360 /Misc
parent7cf66996992eeb7f3ad4c19f960b967e1beb5fa3 (diff)
downloadcpython-43f42fc3cb67433c88e31268767c0cab36422351.zip
cpython-43f42fc3cb67433c88e31268767c0cab36422351.tar.gz
cpython-43f42fc3cb67433c88e31268767c0cab36422351.tar.bz2
Issue #15054: Fix incorrect tokenization of 'b' and 'br' string literals.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c4b27fb..c50f6cb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.