[issue18620] multiprocessing page leaves out important part of Pool example

2016-01-21 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Davin. I tweaked code style a bit and removed trailing whitespaces. -- nosy: +berker.peksag resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.4 ___

[issue18620] multiprocessing page leaves out important part of Pool example

2016-01-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9480e217ade0 by Berker Peksag in branch '2.7': Issue #18620: Improve Pool examples in multiprocessing documentation https://hg.python.org/cpython/rev/9480e217ade0 -- ___ Python tracker

[issue18620] multiprocessing page leaves out important part of Pool example

2016-01-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c89f4f59872f by Berker Peksag in branch '3.5': Issue #18620: Improve Pool examples in multiprocessing documentation https://hg.python.org/cpython/rev/c89f4f59872f New changeset 9f201578d8d9 by Berker Peksag in branch 'default': Issue #18620: Improve

[issue18620] multiprocessing page leaves out important part of Pool example

2015-11-19 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue18620] multiprocessing page leaves out important part of Pool example

2015-09-20 Thread Davin Potts
Changes by Davin Potts : -- versions: +Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue18620] multiprocessing page leaves out important part of Pool example

2015-03-26 Thread Davin Potts
Changes by Davin Potts : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue18620] multiprocessing page leaves out important part of Pool example

2015-03-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +jnoller, sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue18620] multiprocessing page leaves out important part of Pool example

2015-02-06 Thread Davin Potts
Changes by Davin Potts : Added file: http://bugs.python.org/file38030/issue18620_py34.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18620] multiprocessing page leaves out important part of Pool example

2015-02-06 Thread Davin Potts
Changes by Davin Potts : Added file: http://bugs.python.org/file38031/issue18620_py27.patch ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18620] multiprocessing page leaves out important part of Pool example

2015-02-06 Thread Davin Potts
Davin Potts added the comment: Attached are proposed patches for 2.7, 3.4, and default (3.5) branches. In these patches, the 2 examples in the documentation that showcase the use of pool.apply_async have been modified to specifically highlight that a single invocation of apply_async will only

[issue18620] multiprocessing page leaves out important part of Pool example

2015-01-29 Thread Davin Potts
Changes by Davin Potts : -- nosy: +davin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue18620] multiprocessing page leaves out important part of Pool example

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: Looks as if the v2 and v3 docs need changing. -- nosy: +BreamoreBoy type: enhancement -> behavior versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker __

[issue18620] multiprocessing page leaves out important part of Pool example

2013-08-01 Thread Chris Curvey
New submission from Chris Curvey: on http://docs.python.org/2/library/multiprocessing.html, there is a bit about how to use a Pool properly, which looks like this pool = Pool(processes=4) # start 4 worker processes result = pool.apply_async(f, [10]) What this neglects to mention i