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 kristjan.jonsson
Recipients jhylton, kristjan.jonsson, vstinner
Date 2008-11-28.10:53:20
SpamBayes Score 0.00024141828
Marked as misclassified No
Message-id <1227869611.63.0.551728094566.issue4336@psf.upfronthosting.co.za>
In-reply-to
Content
Guido pointed out the problem with _fileobject.readline() being 
followed by socket.recv() if readline uses read buffering.  
xmlrpclib.py was attempting to directly use the underlying socket, 
although in actual fact it never did, (since HTTPConnectio had closed 
it when it returned the response from getresponse()) Never the less, it 
is prudent to make sure that we don't attempt this.
There really should be no need to use the socket directly, a buffered 
read() call is just as efficient.
History
Date User Action Args
2008-11-28 10:53:32kristjan.jonssonsetrecipients: + kristjan.jonsson, jhylton, vstinner
2008-11-28 10:53:31kristjan.jonssonsetmessageid: <1227869611.63.0.551728094566.issue4336@psf.upfronthosting.co.za>
2008-11-28 10:53:26kristjan.jonssonlinkissue4336 messages
2008-11-28 10:53:26kristjan.jonssoncreate