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 pitrou
Recipients Gryllida, giampaolo.rodola, jcao219, pitrou
Date 2011-07-11.09:44:16
SpamBayes Score 0.10462829
Marked as misclassified No
Message-id <1310377457.62.0.207475998726.issue12523@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, the error is that in Python 3 you should use bytes objects when transmitting/receiving data over the network, not (unicode) strings.
That is, replace '\r\n' with b'\r\n', etc.

Of course, the error message should be made less obscure.
History
Date User Action Args
2011-07-11 09:44:17pitrousetrecipients: + pitrou, giampaolo.rodola, Gryllida, jcao219
2011-07-11 09:44:17pitrousetmessageid: <1310377457.62.0.207475998726.issue12523@psf.upfronthosting.co.za>
2011-07-11 09:44:17pitroulinkissue12523 messages
2011-07-11 09:44:16pitroucreate