Commit da5ff063 authored by Denis Bilenko's avatar Denis Bilenko

remove debug printing statements

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