Be more forgiving if we get an error, there are lots of potential socket errors
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py
index 260bc24..e62fcb6 100644
--- a/Lib/test/test_xmlrpc_net.py
+++ b/Lib/test/test_xmlrpc_net.py
@@ -17,9 +17,7 @@
try:
t0 = server.currentTime.getCurrentTime()
except socket.error as e:
- if e.errno != errno.ECONNRESET:
- raise
- print(" test_current_time: socket got reset, skipping test",
+ print(" test_current_time: skipping test, got error: %s" % e,
file=sys.stderr)
return