From c15bb49d71f97d400b295d88e5b075e89cb8ba20 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 29 Nov 2017 16:33:53 +0100 Subject: test_socket: socket.socketpair() is always available (#4634) --- Lib/test/test_socket.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index fb16d09..e70a8f6 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -5136,8 +5136,6 @@ class InheritanceTest(unittest.TestCase): 0) - @unittest.skipUnless(hasattr(socket, "socketpair"), - "need socket.socketpair()") def test_socketpair(self): s1, s2 = socket.socketpair() self.addCleanup(s1.close) -- cgit v0.12