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 anthon
Recipients anthon
Date 2007-10-05.07:30:52
SpamBayes Score 0.11557651
Marked as misclassified No
Message-id <1191569454.84.0.732829758035.issue1238@psf.upfronthosting.co.za>
In-reply-to
Content
In dictobject.c the structures from dictobject.h are typedeffed to:
typedef PyDictEntry dictentry;
typedef PyDictObject dictobject;

However there are still a few locations in that file where the
PyDictEntry and PyDictObject types are used directly. IMHO these should
be replaced by  dictentry resp. dictobject

Attached is a patch for that.
Files
File name Uploaded
dictobject.c.patch anthon, 2007-10-05.07:30:53
History
Date User Action Args
2007-10-05 07:30:55anthonsetspambayes_score: 0.115577 -> 0.11557651
recipients: + anthon
2007-10-05 07:30:54anthonsetspambayes_score: 0.115577 -> 0.115577
messageid: <1191569454.84.0.732829758035.issue1238@psf.upfronthosting.co.za>
2007-10-05 07:30:54anthonlinkissue1238 messages
2007-10-05 07:30:53anthoncreate