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 ncoghlan
Recipients Yury.Selivanov, daniel.urban, eric.snow, meador.inge, ncoghlan
Date 2011-10-03.02:02:59
SpamBayes Score 0.0032303182
Marked as misclassified No
Message-id <1317607379.86.0.272110831639.issue13062@psf.upfronthosting.co.za>
In-reply-to
Content
Because a generator can legitimately have no locals:

>>> def gen():
...     yield 1
... 
>>> g = gen()
>>> g.gi_frame.f_locals
{}

Errors should be reported as exceptions - AttributeError or TypeError if there's no gi_frame and then ValueError or RuntimeError if gi_frame is None.
History
Date User Action Args
2011-10-03 02:02:59ncoghlansetrecipients: + ncoghlan, meador.inge, daniel.urban, Yury.Selivanov, eric.snow
2011-10-03 02:02:59ncoghlansetmessageid: <1317607379.86.0.272110831639.issue13062@psf.upfronthosting.co.za>
2011-10-03 02:02:59ncoghlanlinkissue13062 messages
2011-10-03 02:02:59ncoghlancreate