Message76523
| 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:32 | kristjan.jonsson | set | recipients: + kristjan.jonsson, jhylton, vstinner |
| 2008-11-28 10:53:31 | kristjan.jonsson | set | messageid: <1227869611.63.0.551728094566.issue4336@psf.upfronthosting.co.za> |
| 2008-11-28 10:53:26 | kristjan.jonsson | link | issue4336 messages |
| 2008-11-28 10:53:26 | kristjan.jonsson | create | |