summaryrefslogtreecommitdiff
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* Revert "[2.7] bpo-34172: multiprocessing.Pool leaks resources after being del...Victor Stinner2018-12-061-37/+19
* [2.7] bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH...tzickel2018-10-031-19/+37
* [2.7] bpo-34610: Fixed iterator of multiprocessing.managers.DictProxy. (GH-91...Serhiy Storchaka2018-09-221-1/+4
* bpo-31019: Fix multiprocessing.Process.is_alive() (#2875) (#2882)Victor Stinner2017-07-261-2/+8
* [3.6] bpo-30595: Fix multiprocessing.Queue.get(timeout) (#2027) (#2881) (#2883)Victor Stinner2017-07-261-1/+1
* [2.7] Clear potential ref cycle between Process and Process target (GH-2470) ...Antoine Pitrou2017-06-281-0/+3
* [2.7] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#...Antoine Pitrou2017-06-131-0/+3
* [2.7] bpo-30414: multiprocessing.Queue._feed do not break from main loop on e...Antoine Pitrou2017-05-251-10/+8
* bpo-26434: Fix multiprocessing grandchilds in a Windows service (GH-1167)Marc Schlaich2017-05-181-1/+2
* bpo-29861: release references to multiprocessing Pool tasks (#743) (#803)Antoine Pitrou2017-03-241-1/+6
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-273-5/+5
* Issue #21201: Improves readability of multiprocessing error message from serv...Davin Potts2016-09-081-1/+1
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Close #10128: don't rerun __main__.py in multiprocessingNick Coghlan2015-11-191-1/+15
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-102-6/+14
* Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-131-14/+23
* Issue #22853: Fixed a deadlock when use multiprocessing.Queue at import time.Serhiy Storchaka2015-03-061-6/+4
* Issue #21849: Fixed xmlrpclib serialization of non-ASCII unicode strings inSerhiy Storchaka2015-02-132-3/+8
* Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.Serhiy Storchaka2014-07-221-1/+1
* do not generate pipe names in the temporary dirBenjamin Peterson2014-04-141-1/+1
* Issue #14548: Make multiprocessing finalizers check pid beforeRichard Oudkerk2014-01-231-3/+9
* Fix handling of SystemExit and exit code. Patch by Brodie Rao.Richard Oudkerk2013-11-171-1/+1
* Issue #19425 -- a pickling error should not cause pool to hang.Richard Oudkerk2013-10-281-5/+9
* #18705: fix a number of typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* Issue #18455: multiprocessing should not retry connect() with same socket.Richard Oudkerk2013-07-151-3/+4
* Issue #17261: Ensure multiprocessing's proxies use proper address.Richard Oudkerk2013-07-021-0/+1
* Issue #17097: Make multiprocessing ignore EINTR.Richard Oudkerk2013-07-011-1/+8
* - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
* Issue #17805: Add AsyncResult alias for ApplyResultRichard Oudkerk2013-05-061-0/+2
* Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-171-1/+4
* Issue #12098: multiprocessing on Windows now starts child processesKristján Valur Jónsson2013-03-192-1/+3
* Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.Richard Oudkerk2013-02-261-6/+12
* Issue #15881: Fixed atexit hook in multiprocessing.Benjamin Peterson2013-02-021-9/+32
* Issue #10527: Remove dead codeRichard Oudkerk2013-01-151-23/+0
* issue 10527: fix missing importGiampaolo Rodola'2013-01-031-0/+1
* Fix issue 10527: make multiprocessing use poll() instead of select() if avail...Giampaolo Rodola'2012-12-311-0/+21
* Issue #15646: Prevent equivalent of a fork bomb when using multiprocessingRichard Oudkerk2012-08-141-1/+1
* Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.Richard Oudkerk2012-07-271-0/+5
* Issue #15101: Make pool finalizer avoid joining current threadRichard Oudkerk2012-06-181-3/+6
* Issue #13854: Properly handle non-integer, non-string arg to SystemExitRichard Oudkerk2012-06-061-3/+3
* Issue #12157: pool.map() does not handle empty iterable correctlyRichard Oudkerk2012-06-061-0/+1
* Issue #14881: Allow normal non-main thread to spawn a dummy processRichard Oudkerk2012-05-251-1/+2
* Fix for issue 14725 for 2.7 branchRichard Oudkerk2012-05-051-1/+4
* Issue #9400: Partial backport of fix for #9244Richard Oudkerk2012-05-021-1/+24
* Issue #8184: Fix a potential file descriptor leak when aCharles-François Natali2012-02-041-4/+8
* Issue #13565: Increase multiprocessing's server socket backlog, to avoidCharles-François Natali2011-12-231-1/+1
* Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitelyAntoine Pitrou2011-11-101-1/+5
* Issue #10332: multiprocessing: fix a race condition when a Pool is closedCharles-François Natali2011-10-241-1/+5
* Remove duplication.Ezio Melotti2011-10-191-1/+1
* Issue #4106: Fix occasional exceptions printed out by multiprocessing on inte...Antoine Pitrou2011-08-241-7/+1