summaryrefslogtreecommitdiff
path: root/Doc/library/multiprocessing.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-5/+5
|\
| * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-5/+5
| |
* | Issue #10673: Merge from 3.5Berker Peksag2016-09-261-0/+3
|\ \ | |/
| * Issue #10673: Document that Process.exitcode can be used to determine timeoutBerker Peksag2016-09-261-0/+3
| | | | | | | | Patch by Tom Clark.
* | Fixes issue #6766: Updated multiprocessing Proxy Objects to support nestingDavin Potts2016-09-071-29/+54
| |
* | Merge from 3.5Berker Peksag2016-06-121-1/+1
|\ \ | |/
| * Use exc role for ValueError in multiprocessing.rstBerker Peksag2016-06-121-1/+1
| |
* | Issue #27221: Merge from 3.5Berker Peksag2016-06-121-4/+10
|\ \ | |/ |/|
| * Merge Issue #22558.Terry Jan Reedy2016-06-111-0/+3
| |\
| * \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-291-4/+10
| |\ \ | | | | | | | | | | | | Also merge changes from Issue #27117; no actual code changes to 3.6.
| | * | Expand abbreviations FIFO and LIFO.Serhiy Storchaka2016-05-161-2/+3
| | | |
| | * | Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-4/+4
| | |\ \ | | | | | | | | | | | | | | | Original patch by James Edwards.
| | * | | Issue #25654:Victor Stinner2016-03-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * multiprocessing: open file with closefd=False to avoid ResourceWarning * _test_multiprocessing: open file with O_EXCL to detect bugs in tests (if a previous test forgot to remove TESTFN) * test_sys_exit(): remove TESTFN after each loop iteration Initial patch written by Serhiy Storchaka.
| | * | | Issue #18620: Improve Pool examples in multiprocessing documentationBerker Peksag2016-01-221-2/+7
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | | * \ \ merge from 3.5Senthil Kumaran2016-01-201-15/+17
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | issue25982 - Add a class definition for managers.Namespace in the multiprocessing docs.
| | | * \ \ \ Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵Berker Peksag2016-01-071-2/+7
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | has no effect Patch by Davin Potts and Camilla Montonen.
| | | | * \ \ \ Issue #25523: Merge a-to-an corrections from 3.5Martin Panter2015-11-021-1/+1
| | | | |\ \ \ \
| | | | * \ \ \ \ Issue #25161: Merge full stops from 3.5Martin Panter2015-10-101-3/+3
| | | | |\ \ \ \ \
| | | | * \ \ \ \ \ Issue #23484: Document differences between synchronization primitives ofBerker Peksag2015-09-211-12/+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.
| | | | * \ \ \ \ \ \ Issue #25169: os.getppid() is available on Windows since Python 3.2.Berker Peksag2015-09-211-2/+1
| | | | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Bar Harel.
| | | | * \ \ \ \ \ \ \ Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-2/+7
| | | | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed the case of the "Ctrl-" prefixes.
| | | | | * | | | | | | | Issue #23530: Improve os.cpu_count() description.Charles-Fran?ois Natali2015-07-131-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Julian Taylor.
* | | | | | | | | | | | | Issue #27221: Delete an outdated paragraph about pickle support of ProcessBerker Peksag2016-06-121-6/+1
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initial patch by Jelle Zijlstra.
* | | | | | | | | | | | Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+3
|/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* | | | | | | | | | | Issue #27125: Fix various errors like ?will [be] inherited?Martin Panter2016-05-291-1/+1
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Original patch by James Edwards.
* | | | | | | | | | Issue #25654:Victor Stinner2016-03-251-1/+1
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * multiprocessing: open file with closefd=False to avoid ResourceWarning * _test_multiprocessing: open file with O_EXCL to detect bugs in tests (if a previous test forgot to remove TESTFN) * test_sys_exit(): remove TESTFN after each loop iteration Initial patch written by Serhiy Storchaka.
* | | | | | | | | Issue #18620: Improve Pool examples in multiprocessing documentationBerker Peksag2016-01-211-11/+26
| |_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+17
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | 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 #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-2/+5
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-2/+5
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| | * | | | Issue #23484: Document differences between synchronization primitives ofBerker Peksag2015-09-211-2/+5
| | |\ \ \ \ | | | | |_|/ | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | | * | | Issue #25169: os.getppid() is available on Windows since Python 3.2.Berker Peksag2015-09-211-2/+5
| | | |\ \ \ | | | | |/ / | | | | | | | | | | | | Patch by Bar Harel.
| | | | * | Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-2/+5
| | | | |\ \ | | | | | |/ | | | | | | | | | | | | Fixed the case of the "Ctrl-" prefixes.
| | | | | * Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵Berker Peksag2015-04-081-8/+16
| | | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | available. Patch by Davin Potts.
| | | | | * | Regenerated pydoc topics and minor doc fixes for 3.5.0a3.Larry Hastings2015-03-291-2/+2
| | | | | | |
| | | | | * | Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-121-1/+1
| | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__.
| | | | | * \ \ Issue #22952: improve multiprocessing doc introduction and defer notes until ↵Antoine Pitrou2015-01-111-0/+3
| | | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | appropriate. Patch by Davin Potts.
| | | | | | * | | Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-301-4/+4
| | | | | | | | |
| | | | | | * | | Merge with 3.4Zachary Ware2014-10-031-3/+3
| | | | | | |\ \ \
| | | | | | * \ \ \ Revert #22251Berker Peksag2014-09-281-1/+0
| | | | | | |\ \ \ \
| | | | | | * \ \ \ \ Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-0/+1
| | | | | | |\ \ \ \ \
| | | | | | * \ \ \ \ \ Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-101-0/+3
| | | | | | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | protocol".
| | | | | | | * \ \ \ \ \ Merge with 3.4Terry Jan Reedy2014-07-231-1/+1
| | | | | | | |\ \ \ \ \ \
| | | | | | | * \ \ \ \ \ \ Merge 3.4Andrew Svetlov2014-07-021-2/+4
| | | | | | | |\ \ \ \ \ \ \
| | | | | | | * | | | | | | | Issue #21565: multiprocessing: use contex-manager protocol for synchronizationCharles-Fran?ois Natali2014-05-251-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | primitives.
* | | | | | | | | | | | | | | Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
|/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* | | | | | | | | | | | | | Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-3/+3
|/ / / / / / / / / / / / /
* | | | | | | | | | | | | Issue #23484: Document differences between synchronization primitives ofBerker Peksag2015-09-211-12/+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.