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 vstinner
Recipients vstinner
Date 2013-05-07.22:38:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1367966315.05.0.262623510238.issue17932@psf.upfronthosting.co.za>
In-reply-to
Content
seqiterobject.it_index type is long, whereas iter_setstate() uses a Py_ssize_t. It would be safer to use Py_ssize_t type for seqiterobject.it_index.

The issue emits a compiler warning on Windows 64-bit.

iterator.__getstate__() was introduced in Python 3.3, so older versions are not affected.
History
Date User Action Args
2013-05-07 22:38:35vstinnersetrecipients: + vstinner
2013-05-07 22:38:35vstinnersetmessageid: <1367966315.05.0.262623510238.issue17932@psf.upfronthosting.co.za>
2013-05-07 22:38:35vstinnerlinkissue17932 messages
2013-05-07 22:38:34vstinnercreate