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 kaizhu
Recipients eric.smith, kaizhu, pitrou
Date 2010-10-08.03:31:23
SpamBayes Score 0.00018673873
Marked as misclassified No
Message-id <1286508685.4.0.991804757985.issue10041@psf.upfronthosting.co.za>
In-reply-to
Content
my bad again, hacking newline parameter to the correct argument position works (its in the position where error should b).

a one line patch would be:

socket.py <line 163>
-        text = io.TextIOWrapper(buffer, encoding, newline)
+        text = io.TextIOWrapper(buffer, encoding, newline = newline)
History
Date User Action Args
2010-10-08 03:31:25kaizhusetrecipients: + kaizhu, pitrou, eric.smith
2010-10-08 03:31:25kaizhusetmessageid: <1286508685.4.0.991804757985.issue10041@psf.upfronthosting.co.za>
2010-10-08 03:31:23kaizhulinkissue10041 messages
2010-10-08 03:31:23kaizhucreate