summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-05-26 17:35:09 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-05-26 17:35:09 (GMT)
commitf6da42fd5af0954d6d8a4f1cde08a56aca17fafd (patch)
tree0efa089be22603ddd3657ec3421c64746dd151b1 /Lib
parentcac2ac74dfc878f9943bd500477f5ef2f0298d88 (diff)
downloadcpython-f6da42fd5af0954d6d8a4f1cde08a56aca17fafd.zip
cpython-f6da42fd5af0954d6d8a4f1cde08a56aca17fafd.tar.gz
cpython-f6da42fd5af0954d6d8a4f1cde08a56aca17fafd.tar.bz2
Merged revisions 81545 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81545 | victor.stinner | 2010-05-26 19:33:03 +0200 (mer., 26 mai 2010) | 9 lines Merged revisions 81543 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81543 | victor.stinner | 2010-05-26 19:25:28 +0200 (mer., 26 mai 2010) | 2 lines Issue #7449: Skip test_socketserver if threading support is disabled ........ ................
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_socketserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_socketserver.py b/Lib/test/test_socketserver.py
index 0ab95d1..6819f30 100644
--- a/Lib/test/test_socketserver.py
+++ b/Lib/test/test_socketserver.py
@@ -61,6 +61,7 @@ def simple_subprocess(testcase):
testcase.assertEquals(72 << 8, status)
+@unittest.skipUnless(threading, 'Threading required for this test.')
class SocketServerTest(unittest.TestCase):
"""Test all socket servers."""