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 brett.cannon
Recipients brett.cannon, gvanrossum, thomaslee
Date 2007-10-21.01:41:34
SpamBayes Score 0.0023407617
Marked as misclassified No
Message-id <1192930894.98.0.736872793764.issue1263@psf.upfronthosting.co.za>
In-reply-to
Content
Attached is a fix for sqlite3.

First issue was that the dictionary that was being used to store
converters was having keys in Python code as Unicode but being compared
against str8 in C.

The second issue was that when an object was serialized using
__conform__ and a Unicode object was returned, it was being unserialized
as a str8 no matter what type of argument was returned.  That makes the
most sense if only a single type is going to be returned, so I left it
as such and fixed the test to decode str8 to UTF-8 if passed to __init__.
Files
File name Uploaded
sqlite_fix.diff brett.cannon, 2007-10-21.01:41:34
History
Date User Action Args
2007-10-21 01:41:35brett.cannonsetspambayes_score: 0.00234076 -> 0.0023407617
recipients: + brett.cannon, gvanrossum, thomaslee
2007-10-21 01:41:35brett.cannonsetspambayes_score: 0.00234076 -> 0.00234076
messageid: <1192930894.98.0.736872793764.issue1263@psf.upfronthosting.co.za>
2007-10-21 01:41:34brett.cannonlinkissue1263 messages
2007-10-21 01:41:34brett.cannoncreate