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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, bbange, jhylton, rhettinger, terry.reedy, yorick
Date 2009-02-16.23:00:21
SpamBayes Score 0.059493538
Marked as misclassified No
Message-id <1234825281.94.0.649459843039.issue1153622@psf.upfronthosting.co.za>
In-reply-to
Content
issue5044 describe a similar case with generator expressions:

def f():
   a = 'a'
   eval("sum(a[0]=='a' for j in 'a')")

eval( "sum(   a[0]=='a' for j in 'a'   )", {}, dict(a='a'))
History
Date User Action Args
2009-02-16 23:01:22amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, jhylton, rhettinger, terry.reedy, yorick, bbange
2009-02-16 23:01:21amaury.forgeotdarcsetmessageid: <1234825281.94.0.649459843039.issue1153622@psf.upfronthosting.co.za>
2009-02-16 23:00:21amaury.forgeotdarclinkissue1153622 messages
2009-02-16 23:00:21amaury.forgeotdarccreate