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 christian.heimes
Recipients christian.heimes, gvanrossum, rhettinger
Date 2007-12-10.02:05:12
SpamBayes Score 0.045872156
Marked as misclassified No
Message-id <1197252314.91.0.210135401246.issue1564@psf.upfronthosting.co.za>
In-reply-to
Content
The latest patch does *NOT* add new macros, functions or other stuff. I
simply replaced PyString_* with PyUnicode_* in setobject.c where
appropriate.

The only function I had to factor out is unicode_eq(). It's now in a new
file stringlib/eq.h which is included by setobject.c and dictobject.c.
It's the only way to share the function while keeping it static and
maybe inline.
History
Date User Action Args
2007-12-10 02:05:15christian.heimessetspambayes_score: 0.0458722 -> 0.045872156
recipients: + christian.heimes, gvanrossum, rhettinger
2007-12-10 02:05:14christian.heimessetspambayes_score: 0.0458722 -> 0.0458722
messageid: <1197252314.91.0.210135401246.issue1564@psf.upfronthosting.co.za>
2007-12-10 02:05:14christian.heimeslinkissue1564 messages
2007-12-10 02:05:13christian.heimescreate