Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | Sync typing.py from upstream | Guido van Rossum | 2016-10-21 | 2 | -33/+170 | |
| | | | ||||||
* | | | Merge 3.6 (issue #26923) | Yury Selivanov | 2016-10-21 | 2 | -2/+34 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.5 (issue #26923) | Yury Selivanov | 2016-10-21 | 3 | -2/+38 | |
| |\ \ | | |/ | ||||||
| | * | Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children ↵ | Yury Selivanov | 2016-10-21 | 3 | -2/+38 | |
| | | | | | | | | | | | | | | | | | | are done. Patch by Johannes Ebke. | |||||
* | | | Merge 3.6 (issue #28500) | Yury Selivanov | 2016-10-21 | 1 | -0/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28500: Fix asyncio to handle async gens GC from another thread. | Yury Selivanov | 2016-10-21 | 2 | -0/+5 | |
| | | | ||||||
* | | | Merge (issue #25152) | Brett Cannon | 2016-10-21 | 1 | -0/+6 | |
|\ \ \ | |/ / | ||||||
| * | | Merge (issue #25152) | Brett Cannon | 2016-10-21 | 1 | -0/+6 | |
| |\ \ | | |/ | ||||||
| | * | Issue #25152: Mention the deprecation of pyvenv | Brett Cannon | 2016-10-21 | 1 | -0/+6 | |
| | | | ||||||
* | | | Merge (issue #28396) | Brett Cannon | 2016-10-21 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Merge (issue #28396) | Brett Cannon | 2016-10-21 | 1 | -2/+2 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28396: Remove any mention of .pyo files from the man page. | Brett Cannon | 2016-10-21 | 1 | -2/+2 | |
| | | | | | | | | | | | | Thanks to Ville Skyttä for the patch. | |||||
* | | | Issue #28214: Improved exception reporting for problematic __set_name__ | Serhiy Storchaka | 2016-10-21 | 3 | -8/+28 | |
|\ \ \ | |/ / | | | | | | | attributes. | |||||
| * | | Issue #28214: Improved exception reporting for problematic __set_name__ | Serhiy Storchaka | 2016-10-21 | 3 | -8/+28 | |
| | | | | | | | | | | | | attributes. | |||||
* | | | Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising | Serhiy Storchaka | 2016-10-21 | 7 | -53/+70 | |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | new exception with setting current exception as __cause__. _PyErr_FormatFromCause(exception, format, args...) is equivalent to Python raise exception(format % args) from sys.exc_info()[1] | |||||
| * | | Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising | Serhiy Storchaka | 2016-10-21 | 7 | -53/+70 | |
| | | | | | | | | | | | | | | | | | | | | | | | | new exception with setting current exception as __cause__. _PyErr_FormatFromCause(exception, format, args...) is equivalent to Python raise exception(format % args) from sys.exc_info()[1] | |||||
* | | | Issue #28410: Keep the traceback of original exception in ↵ | Serhiy Storchaka | 2016-10-21 | 1 | -1/+4 | |
|\ \ \ | |/ / | | | | | | | _PyErr_ChainExceptions(). | |||||
| * | | Issue #28410: Keep the traceback of original exception in ↵ | Serhiy Storchaka | 2016-10-21 | 1 | -1/+4 | |
| |\ \ | | |/ | | | | | | | _PyErr_ChainExceptions(). | |||||
| | * | Issue #28410: Keep the traceback of original exception in ↵ | Serhiy Storchaka | 2016-10-21 | 1 | -1/+4 | |
| | | | | | | | | | | | | _PyErr_ChainExceptions(). | |||||
* | | | Issue #18219: Optimize csv.DictWriter for large number of columns. | INADA Naoki | 2016-10-21 | 4 | -5/+28 | |
|\ \ \ | |/ / | | | | | | | Patch by Mariatta Wijaya. | |||||
| * | | Issue #18219: Optimize csv.DictWriter for large number of columns. | INADA Naoki | 2016-10-21 | 4 | -5/+28 | |
| | | | | | | | | | | | | Patch by Mariatta Wijaya. | |||||
* | | | merge 3.6 | Benjamin Peterson | 2016-10-21 | 5 | -48/+19 | |
|\ \ \ | |/ / | ||||||
| * | | mark dtrace stubs as static inline; remove stubs | Benjamin Peterson | 2016-10-21 | 5 | -48/+19 | |
| | | | | | | | | | | | | | | | C99 inline semantics don't work everywhere. (https://bugs.python.org/issue28092) We don't want these to have external visibility anyway. | |||||
* | | | Issue #28448: Fix C implemented asyncio.Future didn't work on Windows (merge ↵ | INADA Naoki | 2016-10-21 | 8 | -8/+109 | |
|\ \ \ | |/ / | | | | | | | 3.6) | |||||
| * | | Issue #28448: Fix C implemented asyncio.Future didn't work on Windows | INADA Naoki | 2016-10-21 | 8 | -8/+109 | |
| | | | ||||||
* | | | Issue #23214: Remove BufferedReader.read1(-1) workaround | Martin Panter | 2016-10-21 | 1 | -8/+1 | |
| | | | ||||||
* | | | Issue #23214: Implement optional BufferedReader, BytesIO read1() argument | Martin Panter | 2016-10-20 | 9 | -39/+81 | |
| | | | ||||||
* | | | Merge test suite fixes from 3.6 | Martin Panter | 2016-10-20 | 3 | -1/+8 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28484: Skip tests if GIL is not used or multithreading is disabled | Martin Panter | 2016-10-20 | 2 | -1/+7 | |
| | | | ||||||
| * | | Issue #28471: Avoid ResourceWarning by detaching test socket | Martin Panter | 2016-10-20 | 1 | -0/+1 | |
| | | | ||||||
* | | | Merge 3.6 (issue #28493) | Yury Selivanov | 2016-10-20 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28493: Fix typos in _asynciomodule.c | Yury Selivanov | 2016-10-20 | 1 | -2/+2 | |
| | | | | | | | | | | | | Thanks to Stéphane Wirtel! | |||||
* | | | Merge 3.6 (issue #26010) | Yury Selivanov | 2016-10-20 | 1 | -10/+10 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #26010: fix typos; rewording | Yury Selivanov | 2016-10-20 | 1 | -10/+10 | |
| | | | ||||||
* | | | Merge 3.6 (issue #28492) | Yury Selivanov | 2016-10-20 | 2 | -2/+32 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28492: Fix how StopIteration is raised in _asyncio.Future | Yury Selivanov | 2016-10-20 | 3 | -2/+34 | |
| | | | ||||||
* | | | Issue #24381: merge from 3.6 | Ned Deily | 2016-10-20 | 1 | -2/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #24381: merge from 3.5 | Ned Deily | 2016-10-20 | 1 | -2/+2 | |
| |\ \ | | |/ | ||||||
| | * | Issue #24381: Avoid unused function warning when building bundled macOS libffi. | Ned Deily | 2016-10-20 | 1 | -2/+2 | |
| | | | | | | | | | | | | Patch by Vajrasky Kok. | |||||
* | | | Merge 3.6 (issue #26010) | Yury Selivanov | 2016-10-20 | 1 | -3/+66 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.5 + document CO_ASYNC_GENERATOR; issue #26010 | Yury Selivanov | 2016-10-20 | 1 | -3/+66 | |
| |\ \ | | |/ | ||||||
| | * | Issue #26010: Document CO_* constants | Yury Selivanov | 2016-10-20 | 1 | -3/+58 | |
| | | | ||||||
* | | | Issue #21955: Please don't try to optimize int+int | Victor Stinner | 2016-10-20 | 1 | -0/+6 | |
| | | | ||||||
* | | | Add cum_weights example (simulation of a cumulative binomial distribution). | Raymond Hettinger | 2016-10-20 | 1 | -0/+7 | |
| | | | ||||||
* | | | Issue #28480: Merge multithreading fixes from 3.6 | Martin Panter | 2016-10-20 | 4 | -2/+8 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28480: Adjust or skip tests if multithreading is disabled | Martin Panter | 2016-10-20 | 2 | -2/+4 | |
| | | | ||||||
| * | | Issue #28480: Avoid label at end of compound statement --without-threads | Martin Panter | 2016-10-20 | 2 | -0/+4 | |
| | | | | | | | | | | | | Based on patch by Masayuki Yamamoto. | |||||
* | | | Merge 3.6 | Victor Stinner | 2016-10-19 | 1 | -4/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Close #28479: Fix reST syntax in windows.rst | Victor Stinner | 2016-10-19 | 1 | -4/+4 | |
| | | | | | | | | | | | | Patch written by Julien Palard. | |||||
* | | | Issue #19795: Fixed formatting a table. | Serhiy Storchaka | 2016-10-19 | 1 | -1/+1 | |
|\ \ \ | |/ / |