summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.Richard Oudkerk2013-02-261-6/+12
* 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 #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* Issue #15881: Fixed 3.2 backport.Alexander Belopolsky2012-09-091-0/+2
* Fixed whitespaceAlexander Belopolsky2012-09-091-1/+1
* Issue #15881: Fixed atexit hook in multiprocessing.Alexander Belopolsky2012-09-091-16/+38
* 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 thread.Richard 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 3.2 branchRichard Oudkerk2012-05-051-1/+4
* Issue #14482: Raise a ValueError, not a NameError, when trying to createAntoine Pitrou2012-04-031-0/+4
* Issue #14151: Raise a ValueError, not a NameError, when trying to createAntoine Pitrou2012-04-011-0/+9
* Issue #8184: Fix a potential file descriptor leak when aCharles-François Natali2012-02-041-4/+8
* Issue #13812: When a multiprocessing Process child raises an exception, flush...Antoine Pitrou2012-01-272-5/+4
* 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-091-1/+5
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-282-3/+3
* 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 #12573: Add resource checks for dangling Thread and Process objects.Antoine Pitrou2011-07-151-0/+5
* Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block isCharles-François Natali2011-07-021-6/+33
|\
| * Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed byCharles-François Natali2011-07-021-6/+33
* | Issue #12285: multiprocessing.Pool() raises a ValueError if the number ofVictor Stinner2011-06-201-0/+2
* | Issue #12310: finalize the old process after _run_after_forkers()Victor Stinner2011-06-171-2/+8
* | Fix #5162. Allow child spawning from Windows services (via pywin32).brian.curtin2011-04-111-2/+3
|\ \ | |/
| * Fix #5162. Allow child spawning from Windows services (via pywin32).brian.curtin2011-04-111-2/+3
* | Issue #11814: Fix likely typo in multiprocessing.Pool._terminate().Antoine Pitrou2011-04-101-1/+1
* | Issue #8428: Fix a race condition in multiprocessing.Pool when terminatingAntoine Pitrou2011-04-101-2/+7
* | Merge #11675Mark Dickinson2011-03-261-1/+3
|\ \ | |/
| * Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.Mark Dickinson2011-03-261-1/+3
* | Merge with 3.1Ronald Oussoren2011-03-161-1/+4
|\ \ | |/
| * Issue #11569: use absolute path to the sysctl command in multiprocessing toRonald Oussoren2011-03-161-1/+4
| * Merged revisions 87225 via svnmerge fromR. David Murray2010-12-1414-13/+352
| * Merged revisions 86077 via svnmerge fromBrian Curtin2010-11-011-1/+2
| * Merged revisions 83722 via svnmerge fromBrian Curtin2010-08-044-4/+4
| * Note: only the relevant parts of r79474 are merged.Florent Xicluna2010-03-283-3/+11
| * Merged revisions 76247 via svnmerge fromAntoine Pitrou2009-11-131-2/+13
| * Merged revisions 75231 via svnmerge fromBenjamin Peterson2009-10-041-1/+1
| * Merged revisions 74745 via svnmerge fromBenjamin Peterson2009-09-111-3/+16
| * Merged revisions 74055 via svnmerge fromGeorg Brandl2009-08-131-0/+2
| * Merged revisions 74063 via svnmerge fromR. David Murray2009-07-291-1/+2
* | Issue #10845: Improve compatibility between multiprocessing on Windows and pa...Nick Coghlan2011-01-301-1/+9
* | Issue #10816: multiprocessing.SocketClient() closes the socket on errorVictor Stinner2011-01-031-15/+14
* | 9162: fix license in multiprocessing filesR. David Murray2010-12-1414-13/+352
* | Issue #9244: multiprocessing.pool: Worker crashes if result can't be encodedAsk Solem2010-11-091-9/+40