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 mark.dickinson
Recipients Jonathan.Livni, georg.brandl, mark.dickinson, rhettinger
Date 2011-02-16.18:43:44
SpamBayes Score 0.00016596001
Marked as misclassified No
Message-id <1297881826.75.0.393419483988.issue11221@psf.upfronthosting.co.za>
In-reply-to
Content
Are you positive that your 'all' is the builtin Python 'all'?  NumPy's 'all' function would behave the way you describe:

>>> all(x < 3 for x in range(5))
False
>>> from numpy import all
>>> all(x < 3 for x in range(5))
True

What does all.__module__ give?
History
Date User Action Args
2011-02-16 18:43:46mark.dickinsonsetrecipients: + mark.dickinson, georg.brandl, rhettinger, Jonathan.Livni
2011-02-16 18:43:46mark.dickinsonsetmessageid: <1297881826.75.0.393419483988.issue11221@psf.upfronthosting.co.za>
2011-02-16 18:43:44mark.dickinsonlinkissue11221 messages
2011-02-16 18:43:44mark.dickinsoncreate