summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-06-10 21:23:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-06-10 21:23:05 (GMT)
commit4dea1eb366bb46fda95051b45e2edc4ab3404f7f (patch)
treed2f1f7b8aaf53e33b673fd4d69c9a100ec7a2155
parent9bba0b390b017d42cb9b386fc9e6349f8e1cf686 (diff)
downloadcpython-4dea1eb366bb46fda95051b45e2edc4ab3404f7f.zip
cpython-4dea1eb366bb46fda95051b45e2edc4ab3404f7f.tar.gz
cpython-4dea1eb366bb46fda95051b45e2edc4ab3404f7f.tar.bz2
Temporarily disable test_xmlrpc_net because xmlrpc.com is broken
-rw-r--r--Lib/test/test_xmlrpc_net.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py
index f6ebbf0..a850ae0 100644
--- a/Lib/test/test_xmlrpc_net.py
+++ b/Lib/test/test_xmlrpc_net.py
@@ -10,7 +10,8 @@ import xmlrpc.client as xmlrpclib
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")