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 r.david.murray
Recipients Duke.Dougal, Illirgway, barry, lpolzer, r.david.murray, richard, vstinner
Date 2014-02-07.02:38:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391740711.69.0.135610656075.issue19662@psf.upfronthosting.co.za>
In-reply-to
Content
Unfortunately I did not get to this before the 3.4 beta release, so no, it won't be fixed in 3.4.

You can work around it by overriding collect_incoming_data in your subclass and doing data.decode('ascii', 'surrogateescape') instead of str(data, 'utf-8'), and then doing mydata.encode('ascii', 'surrogateescape') at the point where you want to turn the data back into binary.
History
Date User Action Args
2014-02-07 02:38:31r.david.murraysetrecipients: + r.david.murray, barry, richard, vstinner, lpolzer, Illirgway, Duke.Dougal
2014-02-07 02:38:31r.david.murraysetmessageid: <1391740711.69.0.135610656075.issue19662@psf.upfronthosting.co.za>
2014-02-07 02:38:31r.david.murraylinkissue19662 messages
2014-02-07 02:38:31r.david.murraycreate