os.sendfile() test: fix "AttributeError: 'NoneType' object has no attribute 'Thread'" when running tests with --without-threads option.

reference: http://bugs.python.org/issue10882#msg136257
This commit is contained in:
Giampaolo Rodola' 2011-05-18 21:28:39 +02:00
parent 0d38f2e65f
commit 566f8a646e

View file

@ -1309,6 +1309,7 @@ class ProgramPriorityTests(unittest.TestCase):
raise raise
if threading is not None:
class SendfileTestServer(asyncore.dispatcher, threading.Thread): class SendfileTestServer(asyncore.dispatcher, threading.Thread):
class Handler(asynchat.async_chat): class Handler(asynchat.async_chat):