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 serhiy.storchaka
Recipients matrixise, rhettinger, serhiy.storchaka, vstinner
Date 2016-11-27.11:15:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480245321.87.0.427964123665.issue28800@psf.upfronthosting.co.za>
In-reply-to
Content
The pair LOAD_CONST/RETURN_VALUE is on 19th place of the top of opcode pairs (see msg269391 in issue27255). Not all of these constants are None. And since the time of LOAD_CONST is much smaller then the time of RETURN_VALUE (the latter includes destroying a frame and should be in a pair with CALL_FUNCTION), I think the performance effect of RETURN_NONE is much less than 1%.
History
Date User Action Args
2016-11-27 11:15:21serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger, vstinner, matrixise
2016-11-27 11:15:21serhiy.storchakasetmessageid: <1480245321.87.0.427964123665.issue28800@psf.upfronthosting.co.za>
2016-11-27 11:15:21serhiy.storchakalinkissue28800 messages
2016-11-27 11:15:21serhiy.storchakacreate