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 Scott Sanderson
Recipients Scott Sanderson, michael.foord, ncoghlan, r.david.murray, taschini
Date 2015-10-07.23:54:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444262074.07.0.880018906978.issue14611@psf.upfronthosting.co.za>
In-reply-to
Content
Note also that a much simpler repro for this issue is:

inspect.getargs(((x for _ in [0]) for x in [0]).gi_code)

This triggers the same issue because the inner generator expression closes over the loop variable of the outer expression, which causes us to hit the STORE_DEREF case instead of the STORE_FAST case.
History
Date User Action Args
2015-10-07 23:54:34Scott Sandersonsetrecipients: + Scott Sanderson, ncoghlan, r.david.murray, michael.foord, taschini
2015-10-07 23:54:34Scott Sandersonsetmessageid: <1444262074.07.0.880018906978.issue14611@psf.upfronthosting.co.za>
2015-10-07 23:54:34Scott Sandersonlinkissue14611 messages
2015-10-07 23:54:34Scott Sandersoncreate