summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-27 23:23:54 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-27 23:23:54 (GMT)
commitda0c025a43bd1c7c9279475ebd8f9edee9e41a0b (patch)
tree4799462e1ad68f4ddaae2e7cc793db406a384b1e /Misc
parent853e44ca8c60318ed6189eedca21e28570d79e83 (diff)
downloadcpython-da0c025a43bd1c7c9279475ebd8f9edee9e41a0b.zip
cpython-da0c025a43bd1c7c9279475ebd8f9edee9e41a0b.tar.gz
cpython-da0c025a43bd1c7c9279475ebd8f9edee9e41a0b.tar.bz2
Issue2495: tokenize.untokenize did not insert space between two consecutive string literals:
"" "" => """", which is invalid code. Will backport
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 ec65705..7264dca 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,10 @@ Extensions Modules
Library
-------
+- Issue #2495: tokenize.untokenize now inserts a space between two consecutive
+ string literals; previously, ["" ""] was rendered as [""""], which is
+ incorrect python code.
+
- Issue #2248: return the result of the QUIT command. from SMTP.quit().
- Backport of Python 3.0's io module.