summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-06-17 02:49:08 (GMT)
committerMeador Inge <meadori@gmail.com>2012-06-17 02:49:08 (GMT)
commit8d5c0b8c198374d0b88f30f04dd29d1f19c1c913 (patch)
tree82c76c228a2074c074e58249dc57b05f0d2776ef /Misc
parent2d9db1dfceeb4e9b2c9572bd1abdbc3bc2b663e5 (diff)
downloadcpython-8d5c0b8c198374d0b88f30f04dd29d1f19c1c913.zip
cpython-8d5c0b8c198374d0b88f30f04dd29d1f19c1c913.tar.gz
cpython-8d5c0b8c198374d0b88f30f04dd29d1f19c1c913.tar.bz2
Issue #15054: Fix incorrect tokenization of 'b' 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 46f87bc..6c587af 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,10 @@ Core and Builtins
Library
-------
+- Issue #15054: A bug in tokenize.tokenize that caused string literals
+ with 'b' prefixes to be incorrectly tokenized has been fixed.
+ Patch by Serhiy Storchaka.
+
- Issue #15006: Allow equality comparison between naive and aware
time or datetime objects.