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 vajrasky
Recipients vajrasky
Date 2013-09-24.14:48:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380034126.83.0.318957814744.issue19082@psf.upfronthosting.co.za>
In-reply-to
Content
Lib/xmlrpc/client.py tries to connect to http://time.xmlrpc.com/RPC2 which has been dead for a "while". I see there is no light in the end of tunnel. Since this code is meant to be a demo not a general purpose tool, I say why don't we direct it to localhost (which can be provided by Lib/xmlrpc/server.py).

After applying this patch, you can start the server:
$ python Lib/xmlrpc/server.py
Serving XML-RPC on localhost port 8000

Then in another place, you can start the client and get result straight away:
$ python Lib/xmlrpc/client.py
2013-09-24T22:35:27
2013-09-24T22:35:27
512
3

Isn't that beautiful?
History
Date User Action Args
2013-09-24 14:48:46vajraskysetrecipients: + vajrasky
2013-09-24 14:48:46vajraskysetmessageid: <1380034126.83.0.318957814744.issue19082@psf.upfronthosting.co.za>
2013-09-24 14:48:46vajraskylinkissue19082 messages
2013-09-24 14:48:46vajraskycreate