[Python-3000-checkins] r64092 - python/branches/py3k/Lib/test/test_xmlrpc_net.py

benjamin.peterson python-3000-checkins at python.org
Tue Jun 10 23:23:05 CEST 2008


Author: benjamin.peterson
Date: Tue Jun 10 23:23:05 2008
New Revision: 64092

Log:
Temporarily disable test_xmlrpc_net because xmlrpc.com is broken


Modified:
   python/branches/py3k/Lib/test/test_xmlrpc_net.py

Modified: python/branches/py3k/Lib/test/test_xmlrpc_net.py
==============================================================================
--- python/branches/py3k/Lib/test/test_xmlrpc_net.py	(original)
+++ python/branches/py3k/Lib/test/test_xmlrpc_net.py	Tue Jun 10 23:23:05 2008
@@ -10,7 +10,8 @@
 
 class CurrentTimeTest(unittest.TestCase):
 
-    def test_current_time(self):
+    # XXX time.xmlrpc.com seems broken which is why this is disabled
+    def Xtest_current_time(self):
         # Get the current time from xmlrpc.com.  This code exercises
         # the minimal HTTP functionality in xmlrpclib.
         server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")


More information about the Python-3000-checkins mailing list