diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-27 23:23:54 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-27 23:23:54 (GMT) |
commit | da0c025a43bd1c7c9279475ebd8f9edee9e41a0b (patch) | |
tree | 4799462e1ad68f4ddaae2e7cc793db406a384b1e /Misc | |
parent | 853e44ca8c60318ed6189eedca21e28570d79e83 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |