Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940) | Mariatta | 2017-07-29 | 1 | -1/+1 |
| | | | (cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c) | ||||
* | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -5/+5 |
|\ | |||||
| * | Issue #19795: Mark up None as literal text. | Serhiy Storchaka | 2016-10-19 | 1 | -5/+5 |
| | | |||||
* | | Issue #10673: Merge from 3.5 | Berker Peksag | 2016-09-26 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #10673: Document that Process.exitcode can be used to determine timeout | Berker Peksag | 2016-09-26 | 1 | -0/+3 |
| | | | | | | | | Patch by Tom Clark. | ||||
* | | Fixes issue #6766: Updated multiprocessing Proxy Objects to support nesting | Davin Potts | 2016-09-07 | 1 | -29/+54 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-06-12 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Use exc role for ValueError in multiprocessing.rst | Berker Peksag | 2016-06-12 | 1 | -1/+1 |
| | | |||||
* | | Issue #27221: Merge from 3.5 | Berker Peksag | 2016-06-12 | 1 | -6/+1 |
|\ \ | |/ | |||||
| * | Issue #27221: Delete an outdated paragraph about pickle support of Process | Berker Peksag | 2016-06-12 | 1 | -6/+1 |
| | | | | | | | | Initial patch by Jelle Zijlstra. | ||||
* | | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
| | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | | Issue #27125: Merge typo fixes from 3.5 | Martin Panter | 2016-05-29 | 1 | -1/+1 |
|\ \ | |/ | | | | | Also merge changes from Issue #27117; no actual code changes to 3.6. | ||||
| * | Issue #27125: Fix various errors like “will [be] inherited” | Martin Panter | 2016-05-29 | 1 | -1/+1 |
| | | |||||
* | | Expand abbreviations FIFO and LIFO. | Serhiy Storchaka | 2016-05-16 | 1 | -2/+3 |
| | | |||||
* | | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -4/+4 |
|\ \ | |/ | | | | | Original patch by James Edwards. | ||||
| * | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -4/+4 |
| | | | | | | | | Original patch by James Edwards. | ||||
| * | Issue #25654: | Victor Stinner | 2016-03-25 | 1 | -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 #25654: | Victor Stinner | 2016-03-25 | 1 | -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 documentation | Berker Peksag | 2016-01-21 | 1 | -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. | ||||
| * | Issue #18620: Improve Pool examples in multiprocessing documentation | Berker Peksag | 2016-01-21 | 1 | -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. | ||||
* | | merge from 3.5 | Senthil Kumaran | 2016-01-20 | 1 | -15/+17 |
|\ \ | |/ | | | | | issue25982 - Add a class definition for managers.Namespace in the multiprocessing docs. | ||||
| * | issue25982 - Add a class definition for managers.Namespace in the ↵ | Senthil Kumaran | 2016-01-20 | 1 | -15/+17 |
| | | | | | | | | multiprocessing docs. | ||||
* | | Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵ | Berker Peksag | 2016-01-07 | 1 | -2/+4 |
|\ \ | |/ | | | | | | | | | has no effect Patch by Davin Potts and Camilla Montonen. | ||||
| * | Issue #5501: Clarify that invoking freeze_support() on non-Windows platforms ↵ | Berker Peksag | 2016-01-07 | 1 | -2/+4 |
| | | | | | | | | | | | | has no effect Patch by Davin Potts and Camilla Montonen. | ||||
* | | Issue #25523: Merge a-to-an corrections from 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| |\ | |||||
| | * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -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: Merge full stops from 3.5 | Martin Panter | 2015-10-10 | 1 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #25161: Merge full stops from 3.4 into 3.5 | Martin Panter | 2015-10-10 | 1 | -3/+3 |
| |\ \ | | |/ | |||||
| | * | Issue #25161: Add full stops in documentation; patch by Takase Arihiro | Martin Panter | 2015-10-10 | 1 | -3/+3 |
| | | | |||||
* | | | Issue #23484: Document differences between synchronization primitives of | Berker Peksag | 2015-09-21 | 1 | -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 #23484: Document differences between synchronization primitives of | Berker Peksag | 2015-09-21 | 1 | -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 #23484: Document differences between synchronization primitives of | Berker Peksag | 2015-09-21 | 1 | -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 Peksag | 2015-09-21 | 1 | -2/+1 |
|\ \ \ | |/ / | | | | | | | Patch by Bar Harel. | ||||
| * | | Issue #25169: os.getppid() is available on Windows since Python 3.2. | Berker Peksag | 2015-09-21 | 1 | -2/+1 |
| |\ \ | | |/ | | | | | | | Patch by Bar Harel. | ||||
| | * | Issue #25169: os.getppid() is available on Windows since Python 3.2. | Berker Peksag | 2015-09-21 | 1 | -2/+1 |
| | | | | | | | | | | | | Patch by Bar Harel. | ||||
* | | | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
| * | | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
| |\ \ | | |/ | | | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
| | * | Marked keystrokes with the :kbd: role. | Serhiy Storchaka | 2015-09-12 | 1 | -1/+1 |
| | | | | | | | | | | | | Fixed the case of the "Ctrl-" prefixes. | ||||
* | | | Issue #23530: Improve os.cpu_count() description. | Charles-François Natali | 2015-07-13 | 1 | -2/+7 |
|/ / | | | | | | | Patch by Julian Taylor. | ||||
* | | Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵ | Berker Peksag | 2015-04-08 | 1 | -8/+16 |
|\ \ | |/ | | | | | | | | | available. Patch by Davin Potts. | ||||
| * | Issue #23400: Raise same exception on both Python 2 and 3 if sem_open is not ↵ | Berker Peksag | 2015-04-08 | 1 | -8/+16 |
| | | | | | | | | | | | | available. Patch by Davin Potts. | ||||
* | | Regenerated pydoc topics and minor doc fixes for 3.5.0a3. | Larry Hastings | 2015-03-29 | 1 | -2/+2 |
| | | |||||
* | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
|\ \ | |/ | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | | Issue #22952: improve multiprocessing doc introduction and defer notes until ↵ | Antoine Pitrou | 2015-01-11 | 1 | -32/+54 |
|\ \ | |/ | | | | | | | | | appropriate. Patch by Davin Potts. | ||||
| * | Issue #22952: improve multiprocessing doc introduction and defer notes until ↵ | Antoine Pitrou | 2015-01-11 | 1 | -32/+54 |
| | | | | | | | | | | | | appropriate. Patch by Davin Potts. | ||||
| * | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 1 | -4/+4 |
| | | |||||
* | | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 1 | -4/+4 |
| | |