diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-29 16:33:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 16:33:53 +0100 |
commit | c15bb49d71f97d400b295d88e5b075e89cb8ba20 (patch) | |
tree | a92bb7e5edb7821138a3f936b19b705c9f6c9ca1 /Lib/test/test_socket.py | |
parent | ef83806f5ec01f34f6cbf4ebb5752875b5961f7e (diff) | |
download | cpython-git-c15bb49d71f97d400b295d88e5b075e89cb8ba20.tar.gz |
test_socket: socket.socketpair() is always available (#4634)
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index fb16d091f9..e70a8f69a7 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) |