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 |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2021-10-18 21:23:30 | iritkatriel | set | recipients: + iritkatriel, gvanrossum, terry.reedy, eric.smith, python-dev, serhiy.storchaka, ztane, Oren Milman |
| 2021-10-18 21:23:30 | iritkatriel | set | messageid: <1634592210.93.0.247133722382.issue26906@roundup.psfhosted.org> |
| 2021-10-18 21:23:30 | iritkatriel | link | issue26906 messages |
| 2021-10-18 21:23:30 | iritkatriel | create | |