summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/heap.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21116: Avoid blowing memory when allocating a multiprocessing sharedAntoine Pitrou2015-04-131-1/+8
| | | | | | array that's larger than 50% of the available RAM. Patch by Médéric Boquien.
* Issue #23060: Suppresses a multiprocessing assert that fails incorrectlySteve Dower2014-12-171-1/+3
| | | | This is to keep buildbots running while we figure out the best long-term fix.
* Issue #21565: multiprocessing: use contex-manager protocol for synchronizationCharles-François Natali2014-05-251-5/+2
| | | | primitives.
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-2/+0
|
* Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-2/+2
| | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other.
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-14/+42
| | | | See http://hg.python.org/sandbox/sbt#spawn
* Issue #18593: fix typo in commentEli Bendersky2013-07-301-1/+1
|
* Make multiprocessing's shared memory use memoryview instead of raw pointerRichard Oudkerk2012-05-261-8/+3
|
* Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-301-26/+1
| | | | instead of BSD licence.
* Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-181-3/+3
| | | | | _multiprocessing.win32 modules now live in a single module "_winapi". Patch by sbt.
* Remove unused or redundant imports in concurrent.futures and multiprocessing.Florent Xicluna2011-11-111-1/+0
|
* Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed byCharles-François Natali2011-07-021-6/+33
| | | | the garbage collector while the Heap lock is held.
* Merged revisions 87225 via svnmerge fromR. David Murray2010-12-141-1/+27
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87225 | r.david.murray | 2010-12-13 20:38:16 -0500 (Mon, 13 Dec 2010) | 2 lines 9162: fix license in multiprocessing files ........
* Merged revisions 83722 via svnmerge fromBrian Curtin2010-08-041-1/+1
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83722 | brian.curtin | 2010-08-04 10:47:24 -0500 (Wed, 04 Aug 2010) | 7 lines Fix #9513 to remove relative imports from multiprocessing. The test suite currently skips test_multiprocessing on Windows because it fails on finding _multiprocessing in several win32-specific blocks. Removing the relative import lets this through and allows the test to run (and pass). ........
* Merged revisions 64104,64117 via svnmerge fromBenjamin Peterson2008-06-111-0/+201
svn+ssh://pythondev@svn.python.org/python/trunk ........ r64104 | benjamin.peterson | 2008-06-10 21:40:25 -0500 (Tue, 10 Jun 2008) | 2 lines add the multiprocessing package to fulfill PEP 371 ........ r64117 | benjamin.peterson | 2008-06-11 07:26:31 -0500 (Wed, 11 Jun 2008) | 2 lines fix import of multiprocessing by juggling imports ........