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 daniel.urban
Recipients daniel.urban, rhettinger, stutzbach
Date 2010-11-28.15:58:22
SpamBayes Score 4.4346615e-09
Marked as misclassified No
Message-id <1290959907.04.0.171212908469.issue10565@psf.upfronthosting.co.za>
In-reply-to
Content
If the type of x defines __next__, but not __iter__, isinstance(x, collections.Iterator) returns True, but in fact x isn't iterable.

>>> class X:
...     def __next__(self):
...             raise StopIteration()
...
>>> x = X()
>>> isinstance(x, collections.Iterator)
True
>>> issubclass(X, collections.Iterator)
True
>>> list(x)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'X' object is not iterable

The reason for this is that collections.Iterator.__subclasshook__ checks for a __next__ method, and if finds one, returns True. (The class provides an __iter__ mixin method, so this doesn't cause problems for classes inheriting collections.Iterator.)

A possible solution could be in collections.Iterator.__subclasshook__ checking for both required methods.
History
Date User Action Args
2010-11-28 15:58:27daniel.urbansetrecipients: + daniel.urban, rhettinger, stutzbach
2010-11-28 15:58:27daniel.urbansetmessageid: <1290959907.04.0.171212908469.issue10565@psf.upfronthosting.co.za>
2010-11-28 15:58:23daniel.urbanlinkissue10565 messages
2010-11-28 15:58:22daniel.urbancreate