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 Sreenivasulu Saya
Recipients Sreenivasulu Saya
Date 2015-09-29.04:05:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443499554.6.0.480253610351.issue25261@psf.upfronthosting.co.za>
In-reply-to
Content
The results displayed by the any() and all() is incorrect (differs from what is documented and what makes sense).

Here is the code:
-----------------
multiples_of_6 = (not (i % 6) for i in range(1, 10))

print("List: ", list(multiples_of_6 ), "\nAny: ", any(multiples_of_6),
        "\nAll: ", all(multiples_of_6))
---------------

The distribution in use is:
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit (AMD64)] on win32

Here is the output on Windows7:
-------------------------------
List:  [False, False, False, False, False, True, False, False, False]
Any:  False    <<<<< This should be True
All:  True     <<<<< This should be False
History
Date User Action Args
2015-09-29 04:05:54Sreenivasulu Sayasetrecipients: + Sreenivasulu Saya
2015-09-29 04:05:54Sreenivasulu Sayasetmessageid: <1443499554.6.0.480253610351.issue25261@psf.upfronthosting.co.za>
2015-09-29 04:05:54Sreenivasulu Sayalinkissue25261 messages
2015-09-29 04:05:53Sreenivasulu Sayacreate