summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-2/+2
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-4/+4
| | | | Original patch by James Edwards.
* Issue #18620: Improve Pool examples in multiprocessing documentationBerker Peksag2016-01-211-7/+32
| | | | | | | | | | A single call to Pool.apply_async() will create only one process. To use all of the pool's processes, it should be invoked multiple times: with Pool(processes=4) as pool: results = [pool.apply_async(func, ()) for i in range(4)] Patch by Davin Potts.
* issue25982 - Add a class definition for managers.Namespace in the ↵Senthil Kumaran2016-01-201-15/+16
| | | | multiprocessing docs.
* Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵Berker Peksag2016-01-071-2/+4
| | | | | | has no effect Patch by Davin Potts and Camilla Montonen.
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1
|
* Issue #23484: Document differences between synchronization primitives ofBerker Peksag2015-09-211-6/+119
| | | | | | | | | | | threading and multiprocessing modules. In multiprocessing, the name of the first parameter of the acquire methods is "block", but "blocking" in threading. This commit also improves documentation of Lock and RLock. Patch by Davin Potts.
* Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
| | | | Fixed the case of the "Ctrl-" prefixes.
* Issue #23400: Add notes about the sem_open support of the host OS toBerker Peksag2015-04-081-8/+17
| | | | | | "Pipes and Queues" and "Synchronization between processes" subsections. Patch by Davin Potts.
* Issue #22952: improve multiprocessing doc introduction and defer notes until ↵Antoine Pitrou2015-01-111-33/+54
| | | | | | appropriate. Patch by Davin Potts.
* Fix a few typo/grammar issues in the multiprocessing docs.Zachary Ware2014-10-031-3/+3
| | | | Reported by Scott Hinton on docs@.
* #19890: fix typo in multiprocessing docs. Patch by Mike Short.Ezio Melotti2014-02-151-1/+1
|
* Issue 16998: Clarify that += on a shared value is not atomic.Richard Oudkerk2013-11-171-6/+18
|
* Issue #18757: Improved cross-references in the concurrent package.Serhiy Storchaka2013-08-231-26/+37
|
* 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
|
* Fix typo.Richard Oudkerk2013-06-241-1/+1
|
* Clarify note and fix typo.Richard Oudkerk2013-06-241-2/+3
|
* Issue #15818: Typo in docs.Richard Oudkerk2013-06-241-3/+3
|
* Issue #18277: Document quirks of multiprocessing queue.Richard Oudkerk2013-06-241-0/+17
|
* #17635: fix wrong function name in multiprocessing docs.Ezio Melotti2013-04-101-1/+1
|
* #17364: remove documentation for a function that does not exist.Ezio Melotti2013-03-061-1/+0
|
* #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-1/+1
| | | | Jerdonek.
* Make call of os.getppid() conditional: it is not available on Windows.Georg Brandl2012-07-011-1/+2
|
* Issue #13999: refer to multiprocessing.Queue when neededSandro Tosi2012-02-251-10/+10
|
* Issue #11836: document multiprocessing.queues.SimpleQueueSandro Tosi2012-02-151-1/+18
|
* update to new C roles and directivesSandro Tosi2012-01-141-1/+1
|
* clarify recv* are blocking operations; thanks to Chris Kogelnik from docs@Sandro Tosi2012-01-071-3/+6
|
* Some formatting & grammar fixes for the multiprocessing docEli Bendersky2011-12-311-17/+17
|
* Fix Issue13147 - Correct the Multiprocessing Pool.map_async method signature.Senthil Kumaran2011-11-021-1/+1
| | | | | Remove the error_callback which is not present in 2.7. Patch by Jyrki Pulliainen.
* Remove duplication.Ezio Melotti2011-10-191-2/+2
|
* merge from 3.2. Fix closes Issue11155 - Correct the ↵Senthil Kumaran2011-09-051-4/+4
| | | | multiprocessing.Queue.put's arg (replace 'item' with 'obj') in the docs. Patch by Westley Martínez.
* #12709: add error_callback argument to map_async documentationSandro Tosi2011-08-081-1/+1
|
* #11952: Fix typo in multiprocessing doc.Ezio Melotti2011-04-291-1/+1
|
* Issue #10885: Fix multiprocessing docs typoRoss Lagerwall2011-03-141-1/+1
|
* Merged revisions 85731,85735 via svnmerge fromGeorg Brandl2010-11-261-1/+1
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85731 | georg.brandl | 2010-10-19 23:07:16 +0200 (Di, 19 Okt 2010) | 1 line Be consistent in the spelling of thread-safe(ty). ........ r85735 | georg.brandl | 2010-10-20 08:50:19 +0200 (Mi, 20 Okt 2010) | 1 line Fix r85728: use "" to mean the system default locale, which should work on more systems. ........
* Merged revisions 85530,85534,85538,85540-85542 via svnmerge fromGeorg Brandl2010-11-261-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85530 | georg.brandl | 2010-10-15 17:32:05 +0200 (Fr, 15 Okt 2010) | 1 line Refrain from using inline suites. ........ r85534 | georg.brandl | 2010-10-15 18:19:43 +0200 (Fr, 15 Okt 2010) | 1 line #9801: document how list and dict proxies created by Managers behave w.r.t. mutable items. ........ r85538 | georg.brandl | 2010-10-15 18:35:46 +0200 (Fr, 15 Okt 2010) | 1 line #7303: add documentation for useful pkgutil functions and classes. ........ r85540 | georg.brandl | 2010-10-15 18:42:37 +0200 (Fr, 15 Okt 2010) | 1 line #6798: fix wrong docs for the arguments to several trace events. ........ r85541 | georg.brandl | 2010-10-15 18:53:24 +0200 (Fr, 15 Okt 2010) | 1 line #4968: updates to inspect.is* function docs. ........ r85542 | georg.brandl | 2010-10-15 19:01:15 +0200 (Fr, 15 Okt 2010) | 1 line #7790: move table of struct_time members to the actual description of struct_time. ........
* Note that maxtasksperchild is new in 2.7.Georg Brandl2010-10-171-11/+12
|
* Merged revisions 84945 via svnmerge fromGeorg Brandl2010-10-061-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84945 | georg.brandl | 2010-09-21 16:48:28 +0200 (Di, 21 Sep 2010) | 1 line #9911: doc copyedits. ........
* Merged revisions ↵Georg Brandl2010-10-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 82798,82805,83659,83977,84015,84018,84141,84264,84326-84327,84480,84482,84484,84530-84531,84553,84619,84915-84916 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82798 | georg.brandl | 2010-07-11 11:23:11 +0200 (So, 11 Jul 2010) | 1 line #6774: explain shutdown() behavior varying with platform. ........ r82805 | georg.brandl | 2010-07-11 11:42:10 +0200 (So, 11 Jul 2010) | 1 line #7935: cross-reference to ast.literal_eval() from eval() docs. ........ r83659 | georg.brandl | 2010-08-03 14:06:29 +0200 (Di, 03 Aug 2010) | 1 line Terminology fix: exceptions are raised, except in generator.throw(). ........ r83977 | georg.brandl | 2010-08-13 17:10:49 +0200 (Fr, 13 Aug 2010) | 1 line Fix copy-paste error. ........ r84015 | georg.brandl | 2010-08-14 17:44:34 +0200 (Sa, 14 Aug 2010) | 1 line Add some maintainers. ........ r84018 | georg.brandl | 2010-08-14 17:48:49 +0200 (Sa, 14 Aug 2010) | 1 line Typo fix. ........ r84141 | georg.brandl | 2010-08-17 16:11:59 +0200 (Di, 17 Aug 2010) | 1 line Markup nits. ........ r84264 | georg.brandl | 2010-08-22 22:23:38 +0200 (So, 22 Aug 2010) | 1 line #9649: fix default value description. ........ r84326 | georg.brandl | 2010-08-26 16:30:15 +0200 (Do, 26 Aug 2010) | 1 line #9689: add links from overview to in-depth class API descriptions. ........ r84327 | georg.brandl | 2010-08-26 16:30:56 +0200 (Do, 26 Aug 2010) | 1 line #9681: typo. ........ r84480 | georg.brandl | 2010-09-04 00:33:27 +0200 (Sa, 04 Sep 2010) | 1 line More inclusive title. ........ r84482 | georg.brandl | 2010-09-04 00:40:02 +0200 (Sa, 04 Sep 2010) | 1 line #9760: clarify what context expression is. ........ r84484 | georg.brandl | 2010-09-04 00:49:27 +0200 (Sa, 04 Sep 2010) | 1 line Fix missing word. ........ r84530 | georg.brandl | 2010-09-05 19:07:12 +0200 (So, 05 Sep 2010) | 1 line #9747: fix copy-paste error in getresgid() doc. ........ r84531 | georg.brandl | 2010-09-05 19:09:18 +0200 (So, 05 Sep 2010) | 1 line #9776: fix some spacing. ........ r84553 | georg.brandl | 2010-09-06 08:49:07 +0200 (Mo, 06 Sep 2010) | 1 line #9780: both { and } are not valid fill characters. ........ r84619 | georg.brandl | 2010-09-08 12:43:45 +0200 (Mi, 08 Sep 2010) | 1 line Add Lukasz. ........ r84915 | georg.brandl | 2010-09-20 08:27:02 +0200 (Mo, 20 Sep 2010) | 1 line Fix typo. ........ r84916 | georg.brandl | 2010-09-20 08:29:01 +0200 (Mo, 20 Sep 2010) | 1 line Mention % as string formatting. ........
* Correct info for Semaphore.acquire() semantics under OSX.Georg Brandl2010-05-211-4/+3
|
* fixup markup errorJack Diederich2010-02-231-1/+1
|
* fixes issue #7530, serve_forever()Jack Diederich2010-02-221-5/+1
|
* Issue #6963: Added maxtasksperchild argument to multiprocessing.PoolJesse Noller2010-01-271-1/+16
|
* #7388: "python".capitalize() in the DocEzio Melotti2009-12-191-1/+1
|
* issue5738: The distribution example was confusing, and out of date. It's too ↵Jesse Noller2009-11-211-7/+0
| | | | large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing.
* Fix issue 4660: spurious task_done errors in multiprocessing, remove doc ↵Jesse Noller2009-08-061-5/+0
| | | | note for from_address
* builtin -> built-in.Georg Brandl2009-07-261-3/+3
|
* #6577: fix (hopefully) all links to builtin instead of module/class-specific ↵Georg Brandl2009-07-261-2/+2
| | | | objects.
* Make punctuation prettier and break up run-on sentence.R. David Murray2009-07-011-2/+2
|