Message404223
| 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 |
|