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 iritkatriel
Recipients Oren Milman, eric.smith, gvanrossum, iritkatriel, python-dev, serhiy.storchaka, terry.reedy, ztane
Date 2021-10-18.21:23:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634592210.93.0.247133722382.issue26906@roundup.psfhosted.org>
In-reply-to
Content
All of the examples for python 3 are working now:

>>> import array
>>> it = iter(array.array('i'))
>>> format(it)
'<array.arrayiterator object at 0x10598f7a0>'
>>> format(iter([]))
'<list_iterator object at 0x10598f890>'
>>> import operator
>>> operator.length_hint(iter("abc"))
03
History
Date User Action Args
2021-10-18 21:23:30iritkatrielsetrecipients: + iritkatriel, gvanrossum, terry.reedy, eric.smith, python-dev, serhiy.storchaka, ztane, Oren Milman
2021-10-18 21:23:30iritkatrielsetmessageid: <1634592210.93.0.247133722382.issue26906@roundup.psfhosted.org>
2021-10-18 21:23:30iritkatriellinkissue26906 messages
2021-10-18 21:23:30iritkatrielcreate