Remove debug print.

This commit is contained in:
Ezio Melotti 2013-03-11 08:57:17 +02:00
parent e318a883fe
commit 05cd03aa0d
1 changed files with 0 additions and 1 deletions

View File

@ -1748,7 +1748,6 @@ class _TestPool(BaseTestCase):
with multiprocessing.Pool(2) as p:
r = p.map_async(sqr, L)
self.assertEqual(r.get(), expected)
print(p._state)
self.assertRaises(ValueError, p.map_async, sqr, L)
def raising():