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 pablogsal
Recipients BTaskaya, eric.smith, gvanrossum, lukasz.langa, lys.nikolaou, pablogsal
Date 2020-10-08.00:17:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1602116267.69.0.927658434435.issue41967@roundup.psfhosted.org>
In-reply-to
Content
For instance, consider this:

x: (
   3 + 
     4
   + 5) = 3

Once the expression in the annotations is parsed, the value of parser->tok->buf is "   +5) = 3" and the tokenizer has thrown away the rest of the lines and the information there. There is no way for us to "grab" the other lines and save them as they are consumed unless we add custom logic into the parser, which is not immediately easy because is auto-generated.
History
Date User Action Args
2020-10-08 00:17:47pablogsalsetrecipients: + pablogsal, gvanrossum, eric.smith, lukasz.langa, lys.nikolaou, BTaskaya
2020-10-08 00:17:47pablogsalsetmessageid: <1602116267.69.0.927658434435.issue41967@roundup.psfhosted.org>
2020-10-08 00:17:47pablogsallinkissue41967 messages
2020-10-08 00:17:47pablogsalcreate