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 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:53serhiy.storchakasetrecipients: + serhiy.storchaka, eric.smith, ztane
2016-05-03 14:15:53serhiy.storchakasetmessageid: <1462284953.37.0.912852453483.issue26906@psf.upfronthosting.co.za>
2016-05-03 14:15:53serhiy.storchakalinkissue26906 messages
2016-05-03 14:15:53serhiy.storchakacreate