]> granicus.if.org Git - python/commitdiff
Issue #12157: pool.map() does not handle empty iterable correctly
authorRichard Oudkerk <shibturn@gmail.com>
Wed, 6 Jun 2012 16:52:18 +0000 (17:52 +0100)
committerRichard Oudkerk <shibturn@gmail.com>
Wed, 6 Jun 2012 16:52:18 +0000 (17:52 +0100)
Initial patch by mouad

Lib/multiprocessing/pool.py
Lib/test/test_multiprocessing.py
Misc/NEWS

index 99b4df472d5a75f587f63913b1f9710440dc1859..170aa7f7c7f062cbab7b687520c89bf4e435cef4 100644 (file)
@@ -576,6 +576,7 @@ class MapResult(ApplyResult):
         if chunksize <= 0:
             self._number_left = 0
             self._ready = True
+            del cache[self._job]
         else:
             self._number_left = length//chunksize + bool(length % chunksize)
 
index 0fe649799a3b6a2e60219edbc0bae375dfd6effe..42b2d91c80480277f459dcf151e95f5e110f139b 100644 (file)
@@ -1152,6 +1152,18 @@ class _TestPool(BaseTestCase):
         join()
         self.assertTrue(join.elapsed < 0.2)
 
+    def test_empty_iterable(self):
+        # See Issue 12157
+        p = self.Pool(1)
+
+        self.assertEqual(p.map(sqr, []), [])
+        self.assertEqual(list(p.imap(sqr, [])), [])
+        self.assertEqual(list(p.imap_unordered(sqr, [])), [])
+        self.assertEqual(p.map_async(sqr, []).get(), [])
+
+        p.close()
+        p.join()
+
 def unpickleable_result():
     return lambda: 42
 
@@ -2113,7 +2125,7 @@ class ProcessesMixin(object):
         'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
         'Condition', 'Event', 'Value', 'Array', 'RawValue',
         'RawArray', 'current_process', 'active_children', 'Pipe',
-        'connection', 'JoinableQueue'
+        'connection', 'JoinableQueue', 'Pool'
         )))
 
 testcases_processes = create_test_cases(ProcessesMixin, type='processes')
@@ -2127,7 +2139,7 @@ class ManagerMixin(object):
     locals().update(get_attributes(manager, (
         'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
        'Condition', 'Event', 'Value', 'Array', 'list', 'dict',
-        'Namespace', 'JoinableQueue'
+        'Namespace', 'JoinableQueue', 'Pool'
         )))
 
 testcases_manager = create_test_cases(ManagerMixin, type='manager')
@@ -2141,7 +2153,7 @@ class ThreadsMixin(object):
         'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
         'Condition', 'Event', 'Value', 'Array', 'current_process',
         'active_children', 'Pipe', 'connection', 'dict', 'list',
-        'Namespace', 'JoinableQueue'
+        'Namespace', 'JoinableQueue', 'Pool'
         )))
 
 testcases_threads = create_test_cases(ThreadsMixin, type='threads')
index d8d519997fffe9417481c6d6b61138f8e18566d5..b8323848e75e14837cd55989840c4734800c6ab6 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -67,6 +67,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #12157: Make pool.map() empty iterables correctly.  Initial
+  patch by mouad.
+
 - Issue #14962: Update text coloring in IDLE shell window after changing
   options.  Patch by Roger Serwy.