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 kristjan.jonsson
Date 2009-05-24.20:52:08
SpamBayes Score 0.0014695546
Marked as misclassified No
Message-id <1243198332.08.0.299017339998.issue6099@psf.upfronthosting.co.za>
In-reply-to
Content
The Transport class in xmlrpclib.py was using the old httplib.HTTP 
class.
This patch brings xmlrpclib up to date to use the HTTPConnection and 
HTTPSConnection classes.  This allows xlmrpclib.ServerProxy to use 
HTTP/1.1 with keep-alive on
servers that support it.

Note that this patch benefits from recent optimizations of 
HTTPConnection reducing the Nagle problem.

This is a separate patch from http://bugs.python.org/issue1767370 and in 
my opinion much simpler.
See also 
http://bugs.python.org/issue2076

Patch uploaded as http://codereview.appspot.com/63144
History
Date User Action Args
2009-05-24 20:52:12kristjan.jonssonsetrecipients: + kristjan.jonsson
2009-05-24 20:52:12kristjan.jonssonsetmessageid: <1243198332.08.0.299017339998.issue6099@psf.upfronthosting.co.za>
2009-05-24 20:52:10kristjan.jonssonlinkissue6099 messages
2009-05-24 20:52:10kristjan.jonssoncreate