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 Hamish Campbell
Recipients Hamish Campbell, docs@python
Date 2016-01-06.02:54:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452048847.64.0.13359194332.issue26020@psf.upfronthosting.co.za>
In-reply-to
Content
Note also the differences here:

   >>> print(set([True, 1]))
   {True}
   >>> print({True, 1})
   {1}
   >>> print({x for x in [True, 1]})
   {True}
History
Date User Action Args
2016-01-06 02:54:07Hamish Campbellsetrecipients: + Hamish Campbell, docs@python
2016-01-06 02:54:07Hamish Campbellsetmessageid: <1452048847.64.0.13359194332.issue26020@psf.upfronthosting.co.za>
2016-01-06 02:54:07Hamish Campbelllinkissue26020 messages
2016-01-06 02:54:07Hamish Campbellcreate