diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-19 11:21:13 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-11-19 11:21:13 (GMT) |
commit | abde2c1d2511367c6199d6bb21ec63cecb7ac6b8 (patch) | |
tree | 04060a758bd1f8287fcf1c45fa185c9d40c4cae2 | |
parent | fca2fc090c8227e8693a2b53dcdafd80bef06c1f (diff) | |
download | cpython-abde2c1d2511367c6199d6bb21ec63cecb7ac6b8.zip cpython-abde2c1d2511367c6199d6bb21ec63cecb7ac6b8.tar.gz cpython-abde2c1d2511367c6199d6bb21ec63cecb7ac6b8.tar.bz2 |
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index b0caa63..b412386 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2216,7 +2216,7 @@ class SendmsgStreamTests(SendmsgTests): # Linux supports MSG_DONTWAIT when sending, but in general, it # only works when receiving. Could add other platforms if they # support it too. - @skipWithClientIf(sys.platform not in {"linux2"}, + @skipWithClientIf(sys.platform not in {"linux"}, "MSG_DONTWAIT not known to work on this platform when " "sending") def testSendmsgDontWait(self): |