summaryrefslogtreecommitdiff
path: root/Lib/multiprocessing/pool.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-1/+1
* bpo-35493: Use Process.sentinel instead of sleeping for polling worker status...Pablo Galindo2019-03-161-11/+77
* bpo-35378: Fix multiprocessing.Pool references (GH-11627)Pablo Galindo2019-02-111-38/+74
* bpo-35424: emit ResourceWarning at multiprocessing.Pool destruction (GH-10974)Victor Stinner2018-12-201-5/+18
* bpo-35491, multiprocessing: replace "RUN" with RUN (GH-11178)Victor Stinner2018-12-161-1/+1
* Add multiprocessing.Pool.__repr__() (GH-11137)Victor Stinner2018-12-141-5/+11
* bpo-35477: multiprocessing.Pool.__enter__() fails if called twice (GH-11134)Victor Stinner2018-12-131-8/+9
* Revert "bpo-34172: multiprocessing.Pool leaks resources after being deleted (...Victor Stinner2018-12-061-50/+24
* bpo-19675: Terminate processes if construction of a pool is failing. (GH-5614)Julien Palard2018-11-041-2/+10
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)tzickel2018-10-021-24/+50
* bpo-32576: use queue.SimpleQueue in critical places (#5216)Antoine Pitrou2018-01-181-8/+11
* [Trivial] Remove now redundant assert (#3245)Antoine Pitrou2017-08-301-1/+0
* bpo-5001: More-informative multiprocessing error messages (#3079)Allen W. Smith, Ph.D2017-08-301-7/+21
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-3/+3
* bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-693)Xiang Zhang2017-03-291-24/+55
* bpo-29861: release references to multiprocessing Pool tasks (#743)Antoine Pitrou2017-03-241-1/+6
* Issue #23992: multiprocessing: make MapResult not fail-fast upon exception.Charles-François Natali2016-02-101-8/+12
* Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-14/+23
|\
| * Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-14/+23
* | Issue #22033: Reprs of most Python implemened classes now contain actualSerhiy Storchaka2014-07-251-1/+1
* | Issue #21565: multiprocessing: use contex-manager protocol for synchronizationCharles-François Natali2014-05-251-20/+5
|/
* Issue #20980: Stop wrapping exception when using ThreadPool.Richard Oudkerk2014-03-231-3/+9
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+1
* Merge.Richard Oudkerk2013-10-281-5/+9
|\
| * Issue #19425 -- a pickling error should not cause pool to hang.Richard Oudkerk2013-10-281-5/+9
* | Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-5/+7
* | Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-40/+44
* | Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() whereCharles-François Natali2013-06-281-5/+3
* | MergeRichard Oudkerk2013-05-061-0/+2
|\ \ | |/
| * Issue #17805: Add AsyncResult alias for ApplyResultRichard Oudkerk2013-05-061-0/+2
* | Issue #13813: Embed stringification of remote traceback in localRichard Oudkerk2013-05-061-0/+25
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-10/+10
|/
* #16307: Fix multiprocessing.Pool.map_async not calling its callbacksHynek Schlawack2012-10-271-1/+2
* raise a ValueError instead of an AssertionError when pool is an invalid stateBenjamin Peterson2012-09-251-7/+8
* Issue #15064: Implement context manager protocol for multiprocessing typesRichard Oudkerk2012-06-181-0/+6
* Issue #15101: Make pool finalizer avoid joining current thread.Richard Oudkerk2012-06-181-3/+6
|\
| * Issue #15101: Make pool finalizer avoid joining current thread.Richard Oudkerk2012-06-181-3/+6
* | Merge fixes for #13854 and #12157.Richard Oudkerk2012-06-071-0/+1
|\ \ | |/
| * Issue #12157: pool.map() does not handle empty iterable correctlyRichard Oudkerk2012-06-061-0/+1
* | Issue #12091: simplify ApplyResult and MapResult with threading.EventRichard Oudkerk2012-05-251-30/+9
* | Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-301-26/+1
* | Issue #12708: Add starmap() and starmap_async() methods (similar to itertools...Antoine Pitrou2011-12-211-2/+30
|/
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-1/+1
* Issue #10332: multiprocessing: fix a race condition when a Pool is closedCharles-François Natali2011-10-241-1/+5
* Issue #12285: multiprocessing.Pool() raises a ValueError if the number ofVictor Stinner2011-06-201-0/+2
* Issue #11814: Fix likely typo in multiprocessing.Pool._terminate().Antoine Pitrou2011-04-111-1/+1
* Issue #8428: Fix a race condition in multiprocessing.Pool when terminatingAntoine Pitrou2011-04-111-2/+7
* 9162: fix license in multiprocessing filesR. David Murray2010-12-141-1/+27
* Issue #9244: multiprocessing.pool: Worker crashes if result can't be encodedAsk Solem2010-11-091-9/+40
* Issue #7316: the acquire() method of lock objects in the :mod:`threading`Antoine Pitrou2010-04-141-2/+2