[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2009-09-14 Thread STINNER Victor
Changes by STINNER Victor : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2009-09-14 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Yes, it is indeed a duplicate. -- nosy: +krisvale resolution: -> duplicate ___ Python tracker ___ __

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2009-09-14 Thread STINNER Victor
STINNER Victor added the comment: I think that this issue is a duplicate of #6267 which is already commited to Python trunk. #6267 is a superset of #6099. See also #2076 (another duplicate of #6267 ?). -- nosy: +haypo ___ Python tracker

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2009-01-10 Thread williambr
williambr added the comment: Hi. I am very intereasted about this patch... specially about the keep-alive part... I have a proposition... wouldn't be fair enough to have a separated Transport just for keep-alive connections? I could wirte one if no one is against it... -- nosy: +willi

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-09-01 Thread Ionut Turturica
Ionut Turturica <[EMAIL PROTECTED]> added the comment: Note that win32 Python's socket module doesn't have a MSG_DONTWAIT constant defined. So the following code will fail on windows machines. +self.__connection.sock.recv(1, +socket.MSG

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-07-24 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: If this is under the Google agreement, then it's fine (I think). It's just that we can't accept anonymous contributions (even if made through a known middleman). ___ Python tracker <[EMAIL PROTECTED]>

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-07-24 Thread Martín Conte Mac Donell
Martín Conte Mac Donell <[EMAIL PROTECTED]> added the comment: I've signed and faxed the form. Just in case. Martin. ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-07-24 Thread Donovan Baarda
Donovan Baarda <[EMAIL PROTECTED]> added the comment: On Tue, July 22, 2008 05:21, Martin v. Löwis wrote: > > Martin v. Löwis <[EMAIL PROTECTED]> added the comment: > > We would need the copyright holder of the patch to submit a contributor > form. Would that be possible? he works for Google (

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-07-21 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: We would need the copyright holder of the patch to submit a contributor form. Would that be possible? -- nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]>

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-07-21 Thread Mark Harrison
Mark Harrison <[EMAIL PROTECTED]> added the comment: There's a one-line change necessary in BaseHTTPServer.py. s/socketserver/SocketServer/ on this line: +socketserver.StreamRequestHandler.__init__(self, request, client_address, parent) +SocketServer.StreamRequestHandler.__init_

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-05-15 Thread Donovan Baarda
Donovan Baarda <[EMAIL PROTECTED]> added the comment: One more time... this time after adding correct email addresses to my existing account... Martín Conte Mac Donell wrote: > Martín Conte Mac Donell <[EMAIL PROTECTED]> added the comment: > > I made this patch works against trunk, also i'v fi

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-05-12 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: I'm not going to pretend I understand the changes. I do notice that test_docxmlrpc hangs hard on my Mac (doesn't even respond to Ctl-C). DocXMLRPCServer subclasses from SimpleXMLRPCServer, so I suspect it needs some attention. I tried the o

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-05-12 Thread Martín Conte Mac Donell
Martín Conte Mac Donell <[EMAIL PROTECTED]> added the comment: I made this patch works against trunk, also i'v fixed some typos. -- nosy: +Reflejo versions: +Python 2.5 Added file: http://bugs.python.org/file10313/xmlrpc-keepalive.diff _ Tracker <[EMA

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-04-23 Thread Ralf Schmitt
Changes by Ralf Schmitt <[EMAIL PROTECTED]>: -- nosy: +schmir _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsub

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-04-22 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Also, please post the patch in uncompressed form. -- nosy: +rhettinger _ Tracker <[EMAIL PROTECTED]> _ _

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-04-22 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: Donovan, can you recreate this patch using the current Subversion trunk? The patch program complains: malformed patch at line 125: Index: trunk.2/Lib/SimpleXMLRPCServer.py Thanks, Skip -- nosy: +skip.montanaro __