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 SilentGhost, benjamin.peterson, brett.cannon, georg.brandl, myronww, ncoghlan, r.david.murray
Date 2015-12-16.21:58:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450303096.5.0.630786273591.issue25886@psf.upfronthosting.co.za>
In-reply-to
Content
My thought on this is that a syntax tree needs to accurately represent parsed syntax of the code.  Two strings being concatenated contain syntax information that is different from a single string.

  "Hello" + " World"

Is not the same syntax as:

  "Hello World"

To lose that syntax information seems to defeat the intent of abstract syntax tree which is to store the syntax associated with a document.
History
Date User Action Args
2015-12-16 21:58:16myronwwsetrecipients: + myronww, brett.cannon, georg.brandl, ncoghlan, benjamin.peterson, r.david.murray, SilentGhost
2015-12-16 21:58:16myronwwsetmessageid: <1450303096.5.0.630786273591.issue25886@psf.upfronthosting.co.za>
2015-12-16 21:58:16myronwwlinkissue25886 messages
2015-12-16 21:58:16myronwwcreate