Commit da5ff063 authored by Denis Bilenko's avatar Denis Bilenko

remove debug printing statements

parent a503aa40
......@@ -11,9 +11,7 @@ class TestCoroutinePool(TestCase):
def test_apply_async(self):
done = Event()
def some_work(x):
print 'puttin'
done.put()
print 'done putting'
pool = self.klass(2)
pool.apply_async(some_work, ('x', ))
done.get()
......
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