[Python-checkins] cpython (3.4): Issue #21730: Add no-thread skip in test_socket. Patch by Berker Peksag.

terry.reedy python-checkins at python.org
Fri Jun 13 21:21:25 CEST 2014


http://hg.python.org/cpython/rev/f44275c66fcf
changeset:   91165:f44275c66fcf
branch:      3.4
parent:      91163:efa32fcd7a0b
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Jun 13 15:20:45 2014 -0400
summary:
  Issue #21730: Add no-thread skip in test_socket. Patch by Berker Peksag.

files:
  Lib/test/test_socket.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -1456,6 +1456,7 @@
 
 
 @unittest.skipUnless(HAVE_SOCKET_CAN, 'SocketCan required for this test.')
+ at unittest.skipUnless(thread, 'Threading required for this test.')
 class CANTest(ThreadedCANSocketTest):
 
     def __init__(self, methodName='runTest'):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list