This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author myronww
Recipients myronww
Date 2015-12-16.21:45:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450302304.12.0.51873465137.issue25886@psf.upfronthosting.co.za>
In-reply-to
Content
ast module is combining string literals that are concatenated with plus operator into a single string in the parsestrplus module rather than maintaining the true syntax tree of the original document.

The fact that ast combines strings and does not maintain the original syntax of the document means that original syntax information is lost and a writer walking the abstract syntax tree is unable to reproduce the original syntax
of the document.
History
Date User Action Args
2015-12-16 21:45:04myronwwsetrecipients: + myronww
2015-12-16 21:45:04myronwwsetmessageid: <1450302304.12.0.51873465137.issue25886@psf.upfronthosting.co.za>
2015-12-16 21:45:04myronwwlinkissue25886 messages
2015-12-16 21:45:03myronwwcreate