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 belopolsky
Recipients belopolsky, georg.brandl, gvanrossum, rhettinger
Date 2008-04-30.15:01:08
SpamBayes Score 0.4014048
Marked as misclassified No
Message-id <1209567687.96.0.826946830375.issue2719@psf.upfronthosting.co.za>
In-reply-to
Content
I thought new code is supposed to use Py_TYPE macro instead of ->ob_type:

+			"%.200s object is not an iterator", it->ob_type-
>tp_name);
..
+	res = (*it->ob_type->tp_iternext)(it);

Py3k branch has the same issue.
History
Date User Action Args
2008-04-30 15:01:37belopolskysetspambayes_score: 0.401405 -> 0.4014048
recipients: + belopolsky, gvanrossum, georg.brandl, rhettinger
2008-04-30 15:01:32belopolskysetspambayes_score: 0.401405 -> 0.401405
messageid: <1209567687.96.0.826946830375.issue2719@psf.upfronthosting.co.za>
2008-04-30 15:01:26belopolskylinkissue2719 messages
2008-04-30 15:01:17belopolskycreate