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 Peter Cawley
Recipients Peter Cawley
Date 2017-02-25.21:26:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488058013.56.0.788869646449.issue29655@psf.upfronthosting.co.za>
In-reply-to
Content
In the implementation of the IMPORT_STAR opcode, if the call to PyFrame_FastToLocalsWithError fails, or f_locals is NULL, then control flow jumps to the error handler without performing a decref on the "from" variable. As the "from" variable is initialised by POPping from the stack, the reference is leaked.
History
Date User Action Args
2017-02-25 21:26:53Peter Cawleysetrecipients: + Peter Cawley
2017-02-25 21:26:53Peter Cawleysetmessageid: <1488058013.56.0.788869646449.issue29655@psf.upfronthosting.co.za>
2017-02-25 21:26:53Peter Cawleylinkissue29655 messages
2017-02-25 21:26:53Peter Cawleycreate