summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
Commit message (Collapse)AuthorAgeFilesLines
* Add links to discussion of multiprocessing spawn/forkserver feature.R David Murray2013-12-201-1/+3
|
* Merge.Richard Oudkerk2013-11-171-6/+18
|\
| * Issue 16998: Clarify that += on a shared value is not atomic.Richard Oudkerk2013-11-171-6/+18
| |
* | merge with 3.3Georg Brandl2013-10-271-2/+2
|\ \ | |/
| * Fix markup errors in the docs and amend suspicious ignores.Georg Brandl2013-10-271-2/+2
| |
* | Issue #18999: Make multiprocessing use context objects.Richard Oudkerk2013-10-161-11/+65
| | | | | | | | | | This allows different parts of a program to use different methods for starting processes without interfering with each other.
* | Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar ↵Georg Brandl2013-10-091-1/+1
| | | | | | | | Gershuni.
* | Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-231-41/+52
|\ \ | |/
| * Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-231-41/+52
| |
* | Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-141-84/+156
| | | | | | | | See http://hg.python.org/sandbox/sbt#spawn
* | Issue #14206: Clarify docs for Queue.join_cancel_thread().Richard Oudkerk2013-07-021-0/+7
|\ \ | |/
| * Issue #14206: Clarify docs for Queue.join_cancel_thread().Richard Oudkerk2013-07-021-0/+7
| |
* | Issue #17273: Clarify that pool methods can only be used by parent process.Richard Oudkerk2013-07-021-0/+6
|\ \ | |/
| * Issue #17273: Clarify that pool methods can only be used by parent process.Richard Oudkerk2013-07-021-0/+6
| |
* | Issue #17914: Use os.cpu_count() instead of multiprocessing.cpu_count() whereCharles-François Natali2013-06-281-1/+1
| | | | | | | | applicable.
* | Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Fix typo.Richard Oudkerk2013-06-241-1/+1
| |
* | Merge.Richard Oudkerk2013-06-241-2/+3
|\ \ | |/
| * Clarify note and fix typo.Richard Oudkerk2013-06-241-2/+3
| |
* | Issue #15818: Merge.Richard Oudkerk2013-06-241-1/+1
|\ \ | |/
| * Issue #15818: Typo in docs.Richard Oudkerk2013-06-241-1/+1
| |
* | Issue #18277: Merge.Richard Oudkerk2013-06-241-0/+17
|\ \ | |/
| * Issue #18277: Document quirks of multiprocessing queue.Richard Oudkerk2013-06-241-0/+17
| |
* | Issue #17914: Add os.cpu_count(). Patch by Yogesh Chaudhari, based on anCharles-Francois Natali2013-05-201-0/+3
|/ | | | initial patch by Trent Nelson.
* #16518: use "bytes-like object" throughout the docs.Ezio Melotti2013-05-041-3/+2
|
* #17635: fix wrong function name in multiprocessing docs.Ezio Melotti2013-04-101-1/+1
|
* #17364: merge with 3.2.Ezio Melotti2013-03-061-1/+0
|\
| * #17364: remove documentation for a function that does not exist.Ezio Melotti2013-03-061-1/+0
| |
* | Fix typo in multiprocessing documentation, thanks to Dmitry Tolstoy from docs@Andrew Svetlov2012-11-201-1/+1
| |
* | starmap/starmap_async for whatsnew, and fix multiprocessing Pool markup.R David Murray2012-10-071-2/+2
| |
* | #10968: commit threading doc changes and corresponding whatsnew entry.R David Murray2012-10-061-1/+1
| | | | | | | | | | | | It is unfortunate that the '_' names were not kept as aliases, and that RLock was not also converted to a class, but it is now too late to change either of those things for 3.3.
* | #15831: merge with 3.2Ezio Melotti2012-09-141-1/+2
|\ \ | |/
| * #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-1/+1
| | | | | | | | Jerdonek.
* | MergeRichard Oudkerk2012-09-101-1/+1
|\ \ | |/
| * Issue #15901: Change example to use byte string instead of stringRichard Oudkerk2012-09-101-1/+1
| |
* | MergeRichard Oudkerk2012-08-171-19/+20
|\ \ | |/
| * Issue #14501: Clarify that authentication keys are byte stringsRichard Oudkerk2012-08-171-19/+20
| |
* | Additional fixes to multiprocessing docs (for issue #13686)Eli Bendersky2012-07-131-13/+10
| |
* | Some fixes for the documentation of multiprocessing (per issue #13686)Eli Bendersky2012-07-131-24/+32
| |
* | Merge with 3.2.Georg Brandl2012-07-011-1/+2
|\ \ | |/
| * Make call of os.getppid() conditional: it is not available on Windows.Georg Brandl2012-07-011-1/+2
| |
* | Issue #15064: Use with-blocks for some examples in docs.Richard Oudkerk2012-06-181-47/+39
| |
* | Issue #15064: Make BaseManager.__enter__() start server if necessary.Richard Oudkerk2012-06-181-3/+8
| |
* | Issue #15064: Implement context manager protocol for multiprocessing typesRichard Oudkerk2012-06-181-0/+17
| |
* | Issue #14059: Implement multiprocessing.BarrierRichard Oudkerk2012-06-151-5/+18
| |
* | Issue #3518: Remove references to non-existent BaseManager.from_address()Richard Oudkerk2012-06-111-3/+4
| | | | | | | | method
* | Use Python 3.x-style keyword only arg in Array()Richard Oudkerk2012-05-291-3/+3
| | | | | | | | | | | | Previously a Python 2.x compatible hack was used for multiprocessing.sharedctypes.Array(). Also the documented signature was wrong.
* | Remove outdated statements about threading and imports.Antoine Pitrou2012-05-181-3/+1
| |
* | Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2Richard Oudkerk2012-05-101-0/+7
| | | | | | | | | | | | | | | | In Python 3.2 and earlier, Process.join() and Connection.poll() treated negative timeouts as zero timeouts. Earlier versions from the 3.3 line of development treat them as infinite timeouts. The patch reverts to the old behaviour.
* | Issue #4892: multiprocessing Connections can now be transferred over ↵Antoine Pitrou2012-04-241-0/+4
| | | | | | | | | | | | multiprocessing Connections. Patch by Richard Oudkerk (sbt).