Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 66fb349

Browse files
Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux.
Patch by David Watson.
2 parents a9568bb + abde2c1 commit 66fb349

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_socket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2221,7 +2221,7 @@ def _testSendmsgTimeout(self):
22212221
# Linux supports MSG_DONTWAIT when sending, but in general, it
22222222
# only works when receiving. Could add other platforms if they
22232223
# support it too.
2224-
@skipWithClientIf(sys.platform not in {"linux2"},
2224+
@skipWithClientIf(sys.platform not in {"linux"},
22252225
"MSG_DONTWAIT not known to work on this platform when "
22262226
"sending")
22272227
def testSendmsgDontWait(self):

0 commit comments

Comments
 (0)