summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2014-10-14 20:22:44 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2014-10-14 20:22:44 (GMT)
commit98c745a773f0536001d85ebe39372570bb303c4b (patch)
tree62b0435055818f81be3de2bb8e8b0538314d94c6 /Lib/test/test_socket.py
parent987f3dd161c4390d5e458298b93f73fdb984ad6c (diff)
downloadcpython-98c745a773f0536001d85ebe39372570bb303c4b.zip
cpython-98c745a773f0536001d85ebe39372570bb303c4b.tar.gz
cpython-98c745a773f0536001d85ebe39372570bb303c4b.tar.bz2
Issue #18643: Add socket.socketpair() on Windows.
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index 3f2057b..ca79532 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -3728,8 +3728,6 @@ class TCPCloserTest(ThreadedTCPSocketTest):
self.cli.connect((HOST, self.port))
time.sleep(1.0)
-@unittest.skipUnless(hasattr(socket, 'socketpair'),
- 'test needs socket.socketpair()')
@unittest.skipUnless(thread, 'Threading required for this test.')
class BasicSocketPairTest(SocketPairTest):