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, isonno
Date 2007-11-09.15:57:34
SpamBayes Score 0.45652544
Marked as misclassified No
Message-id <1194623854.92.0.189430543334.issue1410@psf.upfronthosting.co.za>
In-reply-to
Content
Due to its nature it is impossible to transmit unicode over the wire.
Unicode must always be encoded to bytes before it can be stored on the
hard disk or transmitted. Typically it's UTF-8 but in your case it
depends on the client's browser and the Request header.

The simple BaseHTTPServer isn't clever enough to encode your unicode
data on the fly. You have to do it yourself.
History
Date User Action Args
2007-11-09 15:57:35christian.heimessetspambayes_score: 0.456525 -> 0.45652544
recipients: + christian.heimes, isonno
2007-11-09 15:57:34christian.heimessetspambayes_score: 0.456525 -> 0.456525
messageid: <1194623854.92.0.189430543334.issue1410@psf.upfronthosting.co.za>
2007-11-09 15:57:34christian.heimeslinkissue1410 messages
2007-11-09 15:57:34christian.heimescreate