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 marhar
Recipients Reflejo, abo, marhar, rhettinger, schmir, skip.montanaro
Date 2008-07-21.22:28:55
SpamBayes Score 0.0026072366
Marked as misclassified No
Message-id <1216679336.64.0.950144040628.issue1767370@psf.upfronthosting.co.za>
In-reply-to
Content
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__(self, request,
client_address, parent)

Other than that it seems to work well.  The client side xmlrpc
code even does the right thing with an apache-based server.

I copied just the patched files to a standalone directory and
it works for Python 2.4 as well, if sys.path picks up that
directory first.
History
Date User Action Args
2008-07-21 22:28:57marharsetspambayes_score: 0.00260724 -> 0.0026072366
recipients: + marhar, skip.montanaro, rhettinger, abo, schmir, Reflejo
2008-07-21 22:28:56marharsetspambayes_score: 0.00260724 -> 0.00260724
messageid: <1216679336.64.0.950144040628.issue1767370@psf.upfronthosting.co.za>
2008-07-21 22:28:55marharlinkissue1767370 messages
2008-07-21 22:28:55marharcreate