Christian Heimes added the comment: 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. ---------- nosy: +tiran __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1410> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com