index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
multiprocessing
Commit message (
Expand
)
Author
Age
Files
Lines
*
do not generate pipe names in the temporary dir
Benjamin Peterson
2014-04-14
1
-1/+1
*
Issue #14548: Make multiprocessing finalizers check pid before
Richard Oudkerk
2014-01-23
1
-3/+9
*
Fix handling of SystemExit and exit code. Patch by Brodie Rao.
Richard Oudkerk
2013-11-17
1
-1/+1
*
Issue #19425 -- a pickling error should not cause pool to hang.
Richard Oudkerk
2013-10-28
1
-5/+9
*
#18705: fix a number of typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-17
1
-1/+1
*
Issue #18455: multiprocessing should not retry connect() with same socket.
Richard Oudkerk
2013-07-15
1
-3/+4
*
Issue #17261: Ensure multiprocessing's proxies use proper address.
Richard Oudkerk
2013-07-02
1
-0/+1
*
Issue #17097: Make multiprocessing ignore EINTR.
Richard Oudkerk
2013-07-01
1
-1/+8
*
- Fix typos in the multiprocessing module.
doko@ubuntu.com
2013-05-15
1
-1/+1
*
Issue #17805: Add AsyncResult alias for ApplyResult
Richard Oudkerk
2013-05-06
1
-0/+2
*
Issue #17555: Fix ForkAwareThreadLock so that size of after fork
Richard Oudkerk
2013-04-17
1
-1/+4
*
Issue #12098: multiprocessing on Windows now starts child processes
Kristján Valur Jónsson
2013-03-19
2
-1/+3
*
Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
Richard Oudkerk
2013-02-26
1
-6/+12
*
Issue #15881: Fixed atexit hook in multiprocessing.
Benjamin Peterson
2013-02-02
1
-9/+32
*
Issue #10527: Remove dead code
Richard Oudkerk
2013-01-15
1
-23/+0
*
issue 10527: fix missing import
Giampaolo Rodola'
2013-01-03
1
-0/+1
*
Fix issue 10527: make multiprocessing use poll() instead of select() if avail...
Giampaolo Rodola'
2012-12-31
1
-0/+21
*
Issue #15646: Prevent equivalent of a fork bomb when using multiprocessing
Richard Oudkerk
2012-08-14
1
-1/+1
*
Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses.
Richard Oudkerk
2012-07-27
1
-0/+5
*
Issue #15101: Make pool finalizer avoid joining current thread
Richard Oudkerk
2012-06-18
1
-3/+6
*
Issue #13854: Properly handle non-integer, non-string arg to SystemExit
Richard Oudkerk
2012-06-06
1
-3/+3
*
Issue #12157: pool.map() does not handle empty iterable correctly
Richard Oudkerk
2012-06-06
1
-0/+1
*
Issue #14881: Allow normal non-main thread to spawn a dummy process
Richard Oudkerk
2012-05-25
1
-1/+2
*
Fix for issue 14725 for 2.7 branch
Richard Oudkerk
2012-05-05
1
-1/+4
*
Issue #9400: Partial backport of fix for #9244
Richard Oudkerk
2012-05-02
1
-1/+24
*
Issue #8184: Fix a potential file descriptor leak when a
Charles-François Natali
2012-02-04
1
-4/+8
*
Issue #13565: Increase multiprocessing's server socket backlog, to avoid
Charles-François Natali
2011-12-23
1
-1/+1
*
Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
Antoine Pitrou
2011-11-09
1
-1/+5
*
Issue #10332: multiprocessing: fix a race condition when a Pool is closed
Charles-François Natali
2011-10-24
1
-1/+5
*
Remove duplication.
Ezio Melotti
2011-10-19
1
-1/+1
*
Issue #4106: Fix occasional exceptions printed out by multiprocessing on inte...
Antoine Pitrou
2011-08-24
1
-7/+1
*
Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
Charles-François Natali
2011-07-02
1
-6/+33
*
Issue #12285: multiprocessing.Pool() raises a ValueError if the number of
Victor Stinner
2011-06-20
1
-0/+2
*
Fix #5162. Allow child spawning from Windows services (via pywin32).
brian.curtin
2011-04-11
1
-2/+3
*
Issue #8428: Fix a race condition in multiprocessing.Pool when terminating
Antoine Pitrou
2011-04-10
1
-2/+7
*
Issue #11675: Zero-out newly-created multiprocessing.[Raw]Array objects.
Mark Dickinson
2011-03-26
1
-1/+3
*
Issue #11673: Fix multiprocessing.[Raw]Array constructor to accept a size of ...
Mark Dickinson
2011-03-25
1
-1/+1
*
Issue #11569: use absolute path to the sysctl command in multiprocessing to
Ronald Oussoren
2011-03-16
1
-1/+4
*
Merged revisions 87225 via svnmerge from
R. David Murray
2010-12-14
14
-13/+352
*
Merged revisions 86077 via svnmerge from
Brian Curtin
2010-11-01
1
-1/+2
*
Submit patch for bug 9144; broken imports due to r81380
Jesse Noller
2010-07-03
4
-4/+4
*
On finalize, don't try to join not started process.
Florent Xicluna
2010-03-08
1
-5/+3
*
Don't fail on a debug() statement, if the worker PID is (still) None.
Florent Xicluna
2010-03-08
1
-1/+1
*
Backport the Popen.poll() protection from subprocess to multiprocessing. See ...
Florent Xicluna
2010-03-07
1
-1/+6
*
#7805: wait until all workers are started before collecting their PIDs
Florent Xicluna
2010-03-04
1
-1/+1
*
Issue #6963: Added maxtasksperchild argument to multiprocessing.Pool
Jesse Noller
2010-01-27
2
-17/+83
*
allow Process name to be unicode #7571
Benjamin Peterson
2009-12-24
1
-1/+1
*
revert unintended change to multiprocessing/queues.py
Jesse Noller
2009-11-21
1
-18/+2
*
issue5738: The distribution example was confusing, and out of date. It's too ...
Jesse Noller
2009-11-21
1
-2/+18
*
Issue #7318: multiprocessing now uses a timeout when it fails to establish
Antoine Pitrou
2009-11-13
1
-2/+13
[next]