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 amaury.forgeotdarc
Recipients ajaksu2, amaury.forgeotdarc, arigo, donmez, gideon, rhettinger, terry.reedy
Date 2008-09-01.22:01:40
SpamBayes Score 7.5861017e-06
Marked as misclassified No
Message-id <1220306501.84.0.345422407007.issue3720@psf.upfronthosting.co.za>
In-reply-to
Content
Did you notice that the definition of PyIter_Check() also changed?

>>> class T(object):
...   def __iter__(self): return self
...
>>> iter(T())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: iter() returned non-iterator of type 'T'

Or did you refer to .so extensions modules that are not recompiled
between 2.5 and 2.6? (I don't know if this still works)
History
Date User Action Args
2008-09-01 22:01:41amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, arigo, rhettinger, terry.reedy, ajaksu2, donmez, gideon
2008-09-01 22:01:41amaury.forgeotdarcsetmessageid: <1220306501.84.0.345422407007.issue3720@psf.upfronthosting.co.za>
2008-09-01 22:01:40amaury.forgeotdarclinkissue3720 messages
2008-09-01 22:01:40amaury.forgeotdarccreate