Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor (#4241) | Antoine Pitrou | 2017-11-04 | 1 | -6/+42 |
| | | | | | | * bpo-21423: Add an initializer argument to {Process,Thread}PoolExecutor * Fix docstring | ||||
* | bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682) | Thomas Moreau | 2017-10-03 | 1 | -1/+8 |
| | |||||
* | Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor() | Gregory P. Smith | 2016-08-07 | 1 | -1/+5 |
| | | | | the ability to specify a thread name prefix. | ||||
* | Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URL | Martin Panter | 2016-05-28 | 1 | -1/+1 |
| | | | | Patch by Anish Shah and Aatish Neupane. | ||||
* | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -2/+2 |
| | | | | Original patch by James Edwards. | ||||
* | issue23962 - Reference the correct TimeoutError in concurrent.futures ↵ | Senthil Kumaran | 2016-01-19 | 1 | -16/+27 |
| | | | | | | documentation. Patch contributed by Ryder Lewis. | ||||
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -2/+2 |
|\ | |||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -2/+2 |
| | | | | | | | | | | | | 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 #25127: Fix typo in concurrent.futures.rst | Berker Peksag | 2015-09-15 | 1 | -1/+1 |
|\ \ | |/ | | | | | Reported by Jakub Wilk. | ||||
| * | Issue #25127: Fix typo in concurrent.futures.rst | Berker Peksag | 2015-09-15 | 1 | -1/+1 |
| | | | | | | | | Reported by Jakub Wilk. | ||||
* | | Issue #12955: Change the urlopen() examples to use context managers where ↵ | Berker Peksag | 2015-04-12 | 1 | -2/+2 |
|\ \ | |/ | | | | | | | | | appropriate. Patch by Martin Panter. | ||||
| * | Issue #12955: Change the urlopen() examples to use context managers where ↵ | Berker Peksag | 2015-04-12 | 1 | -2/+2 |
| | | | | | | | | | | | | appropriate. Patch by Martin Panter. | ||||
* | | merge with 3.4 | Georg Brandl | 2014-10-28 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Fix module name. | Georg Brandl | 2014-10-28 | 1 | -0/+2 |
| | | |||||
* | | Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize* | Antoine Pitrou | 2014-10-04 | 1 | -2/+11 |
| | | | | | | | | | | argument to allow batching of tasks in child processes and improve performance of ProcessPoolExecutor. Patch by Dan O'Reilly. | ||||
* | | Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ↵ | Guido van Rossum | 2014-09-02 | 1 | -1/+9 |
| | | | | | | | | Popa.) | ||||
* | | Issue #21362: concurrent.futures does not validate that max_workers is proper | Brian Quinlan | 2014-05-17 | 1 | -0/+2 |
|/ | |||||
* | Fix issue #20367: concurrent.futures.as_completed() for duplicate arguments. | Guido van Rossum | 2014-01-26 | 1 | -1/+2 |
| | | | | Patch by Glenn Langford. | ||||
* | Issue #11161: Update the documentation for ProcessPoolExecutor to note that ↵ | bquinlan | 2013-10-25 | 1 | -0/+3 |
| | | | | it will not work in the interactive shell. | ||||
* | Issue #18757: Improved cross-references in the concurrent package. | Serhiy Storchaka | 2013-08-23 | 1 | -1/+1 |
| | |||||
* | merge with 3.3.1 release clone | Georg Brandl | 2013-04-06 | 1 | -1/+1 |
|\ | |||||
| * | Fix suspicious markup in the docs. | Georg Brandl | 2013-03-23 | 1 | -1/+1 |
| | | |||||
* | | Closes #4159: add LaTeX tabular column specifications to tables that ↵ | Georg Brandl | 2013-03-28 | 1 | -0/+2 |
|/ | | | | otherwise are cut off or have overlapping text. | ||||
* | Fix typo in example (pointed out by a couple of people, most recently Ken Rimey) | Nick Coghlan | 2012-10-20 | 1 | -1/+1 |
| | |||||
* | A dict comprehension is much prettier (thanks Antoine) | Nick Coghlan | 2012-10-16 | 1 | -5/+3 |
| | |||||
* | Tweak the threaded example in concurrent.futures | Nick Coghlan | 2012-10-16 | 1 | -10/+15 |
| | |||||
* | merge 3.2 | Benjamin Peterson | 2012-10-12 | 1 | -10/+12 |
|\ | |||||
| * | Fix links to the __next__ method. | Ezio Melotti | 2012-10-12 | 1 | -10/+12 |
| | | |||||
* | | Merge with 3.2. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Remove duplication. | Ezio Melotti | 2011-10-19 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.2 | Éric Araujo | 2011-08-19 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Add a few missing source links from 2.7 and harmonize lib docs headers | Éric Araujo | 2011-08-18 | 1 | -2/+2 |
| | | |||||
* | | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed | Antoine Pitrou | 2011-06-08 | 1 | -0/+19 |
|/ | | | | | children and raises BrokenProcessPool in such a situation. Previously it would reliably freeze/deadlock. | ||||
* | Wording fix. | Eric Smith | 2011-02-01 | 1 | -1/+1 |
| | |||||
* | More source links. | Raymond Hettinger | 2011-01-27 | 1 | -0/+5 |
| | |||||
* | Homogenize the "optional OS services" menu | Antoine Pitrou | 2010-12-12 | 1 | -2/+2 |
| | |||||
* | Fix "seperate". | Georg Brandl | 2010-12-09 | 1 | -1/+1 |
| | |||||
* | Fixing some sphinx inline directives - detected using ``make check``. | Senthil Kumaran | 2010-10-15 | 1 | -2/+2 |
| | |||||
* | #9911: doc copyedits. | Georg Brandl | 2010-09-21 | 1 | -2/+2 |
| | |||||
* | Edit concurrent docs, add versionadded and see also reference to the PEP. | Georg Brandl | 2010-09-19 | 1 | -145/+152 |
| | |||||
* | edit concurrent.future docs | Benjamin Peterson | 2010-09-19 | 1 | -62/+55 |
| | |||||
* | Initial implementation of PEP 3148 | Brian Quinlan | 2010-09-18 | 1 | -0/+366 |