Message264730
| Author | serhiy.storchaka |
|---|---|
| Recipients | eric.smith, serhiy.storchaka, ztane |
| Date | 2016-05-03.14:15:53 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1462284953.37.0.912852453483.issue26906@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
There is similar issue on 3.x:
>>> import array
>>> it = iter(array.array('i'))
>>> format(it)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: Type arrayiterator doesn't define __format__
>>> type(it).__format__
<method '__format__' of 'object' objects>
>>> format(it)
'<arrayiterator object at 0xb703f4ec>' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2016-05-03 14:15:53 | serhiy.storchaka | set | recipients: + serhiy.storchaka, eric.smith, ztane |
| 2016-05-03 14:15:53 | serhiy.storchaka | set | messageid: <1462284953.37.0.912852453483.issue26906@psf.upfronthosting.co.za> |
| 2016-05-03 14:15:53 | serhiy.storchaka | link | issue26906 messages |
| 2016-05-03 14:15:53 | serhiy.storchaka | create | |