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 recharti
Recipients recharti
Date 2014-11-18.23:16:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416352597.9.0.2072492328.issue22899@psf.upfronthosting.co.za>
In-reply-to
Content
While the parse_request is handling the requestline, it tries to force the string into iso-8859-1 using an unsupported syntax.

Line #274 in server.py

requestline = str(self.raw_requestline, 'iso-8859-1')

Obviously, python complains.

TypeError: decoding str is not supported

I'm running python 3.4.2 and the line is present in the 3.4.2 source I downloaded from the python.org today.

That is all.
History
Date User Action Args
2014-11-18 23:16:37rechartisetrecipients: + recharti
2014-11-18 23:16:37rechartisetmessageid: <1416352597.9.0.2072492328.issue22899@psf.upfronthosting.co.za>
2014-11-18 23:16:37rechartilinkissue22899 messages
2014-11-18 23:16:37recharticreate