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 py.user
Recipients docs@python, py.user
Date 2013-02-11.05:47:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360561644.25.0.289819655691.issue17178@psf.upfronthosting.co.za>
In-reply-to
Content
>>> help(all)

"
all(...)
    all(iterable) -> bool
    
    Return True if bool(x) is True for all values x in the iterable.
"

>>> all([])
True
>>> bool()
False
>>>
History
Date User Action Args
2013-02-11 05:47:24py.usersetrecipients: + py.user, docs@python
2013-02-11 05:47:24py.usersetmessageid: <1360561644.25.0.289819655691.issue17178@psf.upfronthosting.co.za>
2013-02-11 05:47:24py.userlinkissue17178 messages
2013-02-11 05:47:23py.usercreate