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 sir-sigurd
Recipients sir-sigurd
Date 2018-09-04.04:19:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1536034779.39.0.56676864532.issue34574@psf.upfronthosting.co.za>
In-reply-to
Content
In [1]: from collections import OrderedDict

In [2]: od = OrderedDict.fromkeys(range(10))

In [3]: it = iter(od)

In [4]: it.__reduce__()
Out[4]: (<function iter>, ([0, 1, 2, 3, 4, 5, 6, 7, 8, 9],))

In [5]: list(it)
Out[5]: []
History
Date User Action Args
2018-09-04 04:19:39sir-sigurdsetrecipients: + sir-sigurd
2018-09-04 04:19:39sir-sigurdsetmessageid: <1536034779.39.0.56676864532.issue34574@psf.upfronthosting.co.za>
2018-09-04 04:19:39sir-sigurdlinkissue34574 messages
2018-09-04 04:19:39sir-sigurdcreate