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 Demur Rumed
Recipients Demur Rumed, abarnert, benjamin.peterson, brett.cannon, georg.brandl, josh.r, ncoghlan, python-dev, rhettinger, serhiy.storchaka, vstinner, yselivanov
Date 2016-05-22.13:42:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463924544.67.0.26637454543.issue26647@psf.upfronthosting.co.za>
In-reply-to
Content
Compiler warnings can be fixed by using h instead of j in case RETURN_VALUE & casting CONST_LEN() to unsigned is safe

As for the failing tests: I've finally figured out how to use Tools/freeze to fix __phello__ et al. I've brought up the trace test failure a few times, essentially

return (1,
2,
3)

compiles to LOAD_CONST (1,2,3) being on separate line than the RETURN_VALUE whereas previously it did not. This issue does not occur for

return """1,
2,
3"""

Leading me to believe peephole has missed some detail in ltotab handling
History
Date User Action Args
2016-05-22 13:42:24Demur Rumedsetrecipients: + Demur Rumed, brett.cannon, georg.brandl, rhettinger, ncoghlan, vstinner, benjamin.peterson, python-dev, serhiy.storchaka, yselivanov, abarnert, josh.r
2016-05-22 13:42:24Demur Rumedsetmessageid: <1463924544.67.0.26637454543.issue26647@psf.upfronthosting.co.za>
2016-05-22 13:42:24Demur Rumedlinkissue26647 messages
2016-05-22 13:42:24Demur Rumedcreate