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 xdegaye
Recipients Jurko.Gospodnetić, georg.brandl, kay, r.david.murray, xdegaye
Date 2014-04-12.07:09:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397286591.37.0.571425509942.issue21161@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW this generator expression can be evaluated with the 'interact' command:

--Return--
> /test/comprehension.py(5)foo()->None
-> pdb.set_trace()
(Pdb) interact
*interactive*
>>> all(x < limit for x in items)
True
>>> 
(Pdb)
History
Date User Action Args
2014-04-12 07:09:51xdegayesetrecipients: + xdegaye, georg.brandl, r.david.murray, Jurko.Gospodnetić, kay
2014-04-12 07:09:51xdegayesetmessageid: <1397286591.37.0.571425509942.issue21161@psf.upfronthosting.co.za>
2014-04-12 07:09:51xdegayelinkissue21161 messages
2014-04-12 07:09:50xdegayecreate