Commit 500c5466 authored by Denis Bilenko's avatar Denis Bilenko

test__threadpool.py: avoid spurios 'switched unexpectedly' messages because if...

test__threadpool.py: avoid spurios 'switched unexpectedly' messages because if kill() that switched out
parent 92155067
......@@ -202,6 +202,11 @@ class TestJoinEmpty(TestCase):
self.pool = ThreadPool(1)
self.pool.join()
def cleanup(self):
# needed here because currently Greenlet.kill() switches out even if greenlet not started yet
# XXX fix Greenlet.kill
pass
class TestSpawn(TestCase):
switch_expected = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment