diff options
| author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-11 08:57:17 +0200 |
|---|---|---|
| committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-11 08:57:17 +0200 |
| commit | 05cd03aa0dd53bdee72ff3a996873341d0e6ba19 (patch) | |
| tree | 2e5fe80747cea15c7be8d88b2b540400971446ae | |
| parent | e318a883fece5d9a45165670b5f995886f524820 (diff) | |
| download | cpython-git-05cd03aa0dd53bdee72ff3a996873341d0e6ba19.tar.gz | |
Remove debug print.
| -rw-r--r-- | Lib/test/test_multiprocessing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py index 54ef7bf047..53c8c1fdb4 100644 --- a/Lib/test/test_multiprocessing.py +++ b/Lib/test/test_multiprocessing.py @@ -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(): |
