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 Steven Reed
Recipients Steven Reed
Date 2016-04-09.20:22:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460233346.79.0.373711296036.issue26725@psf.upfronthosting.co.za>
In-reply-to
Content
Example repro:

Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> x=map(bool,[1,0,0,1,1,0])
>>> x
<map object at 0x0000000000AC51D0>
>>> list(x)
[True, False, False, True, True, False]
>>> list(x)
[]
>>> x
<map object at 0x0000000000AC51D0>
History
Date User Action Args
2016-04-09 20:22:26Steven Reedsetrecipients: + Steven Reed
2016-04-09 20:22:26Steven Reedsetmessageid: <1460233346.79.0.373711296036.issue26725@psf.upfronthosting.co.za>
2016-04-09 20:22:26Steven Reedlinkissue26725 messages
2016-04-09 20:22:26Steven Reedcreate