This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jason Yu
Recipients Jason Yu
Date 2016-08-26.23:15:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472253350.37.0.404019702525.issue27873@psf.upfronthosting.co.za>
In-reply-to
Content
Hello all, 

The official doc describes `Pool.map(func, iterable[, chunksize])` as "A parallel equivalent of the map() built-in function.". 

Since the function signature of `map` is `map(function, iterable, ...)`, I hereby suggest that `Pool.map` should change its function signature to `Pool.map(function, iterable, ... [, chunksize])`. This will bring true equivalent to these functions. 

Tell me what you think. 

Pool.map: https://docs.python.org/3/library/multiprocessing.html#multiprocessing.pool.Pool.map 

map: https://docs.python.org/3/library/functions.html#map 

Jason
History
Date User Action Args
2016-08-26 23:15:50Jason Yusetrecipients: + Jason Yu
2016-08-26 23:15:50Jason Yusetmessageid: <1472253350.37.0.404019702525.issue27873@psf.upfronthosting.co.za>
2016-08-26 23:15:50Jason Yulinkissue27873 messages
2016-08-26 23:15:50Jason Yucreate