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 serhiy.storchaka
Recipients rhettinger, serhiy.storchaka
Date 2021-08-27.14:47:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630075627.02.0.307201647792.issue45030@roundup.psfhosted.org>
In-reply-to
Content
>>> it = iter(range(2**63-10, 2**63-1, 10))
>>> it.__reduce__()
(<built-in function iter>, (range(9223372036854775798, -9223372036854775808, 10),), 0)
>>> import pickle
>>> it2 = pickle.loads(pickle.dumps(it))
>>> list(it)
[9223372036854775798]
>>> list(it2)
[]
History
Date User Action Args
2021-08-27 14:47:07serhiy.storchakasetrecipients: + serhiy.storchaka, rhettinger
2021-08-27 14:47:07serhiy.storchakasetmessageid: <1630075627.02.0.307201647792.issue45030@roundup.psfhosted.org>
2021-08-27 14:47:06serhiy.storchakalinkissue45030 messages
2021-08-27 14:47:06serhiy.storchakacreate