summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-12-07 09:08:35 (GMT)
committerNed Deily <nad@acm.org>2011-12-07 09:08:35 (GMT)
commit2f0ad742b5c13d79aa4e3c2e935cfbe04f1e9a08 (patch)
tree724af5342ac21887b26e00aac43571a710345a0c /Misc
parenta9837d819458b379512771a1e02f7ea02244e813 (diff)
downloadcpython-2f0ad742b5c13d79aa4e3c2e935cfbe04f1e9a08.zip
cpython-2f0ad742b5c13d79aa4e3c2e935cfbe04f1e9a08.tar.gz
cpython-2f0ad742b5c13d79aa4e3c2e935cfbe04f1e9a08.tar.bz2
Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..".
(Patch by Tal Einat)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 4effde3..0f92165 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -256,6 +256,7 @@ Hans Eckardt
Rodolpho Eckhardt
Grant Edwards
John Ehresman
+Tal Einat
Eric Eisner
Andrew Eland
Julien Élie
diff --git a/Misc/NEWS b/Misc/NEWS
index 8640d70..91fae45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -90,6 +90,9 @@ Core and Builtins
Library
-------
+- Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..".
+ Patch by Tal Einat.
+
- tarfile.py: Correctly detect bzip2 compressed streams with blocksizes
other than 900k.