[issue20736] test_socket: testSendmsgDontWait needlessly skipped on Linux

2014-11-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report and patch David. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue20736] test_socket: testSendmsgDontWait needlessly skipped on Linux

2014-11-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset fb06c8ccfd41 by Serhiy Storchaka in branch '3.4': Issue #20736: testSendmsgDontWait in test_socket no longer skipped on Linux. https://hg.python.org/cpython/rev/fb06c8ccfd41 New changeset 23ab1197df0b by Serhiy Storchaka in branch 'default': Issue #

[issue20736] test_socket: testSendmsgDontWait needlessly skipped on Linux

2014-11-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka stage: -> commit review versions: -Python 3.3 ___ Python tracker ___ ___

[issue20736] test_socket: testSendmsgDontWait needlessly skipped on Linux

2014-02-22 Thread David Watson
New submission from David Watson: In test_socket, the decorator on SendmsgStreamTests.testSendmsgDontWait still checks for the old sys.platform value of "linux2", with the result that the test is always skipped, when in fact the test is for a Linux facility. Patch attached for 3.3 and above.