Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #27208: Merge with 3.5 | Zachary Ware | 2016-08-10 | 1 | -4/+4 |
|\ | |||||
| * | Issue #27208: Fix doctest in Doc/library/traceback.rst | Zachary Ware | 2016-08-10 | 1 | -4/+4 |
| | | | | | | | | Patch by Jelle Zijlstra. | ||||
* | | Closes #27207: Merge with 3.5 | Zachary Ware | 2016-08-10 | 1 | -18/+31 |
|\ \ | |/ | |||||
| * | Issue #27207: Fix doctests in Doc/whatsnew/3.2.rst | Zachary Ware | 2016-08-10 | 1 | -18/+31 |
| | | | | | | | | Initial patch by Jelle Zijlstra. | ||||
* | | Closes #27206: Merge with 3.5 | Zachary Ware | 2016-08-09 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #27206: Fix doctests in Doc/tutorial. | Zachary Ware | 2016-08-09 | 1 | -0/+4 |
| | | | | | | | | Patch by Jelle Zijlstra. | ||||
* | | Closes #27205: Merge with 3.5 | Zachary Ware | 2016-08-09 | 1 | -15/+15 |
|\ \ | |/ | |||||
| * | Issue #27205: Fix doctests in Doc/library/collections.rst. | Zachary Ware | 2016-08-09 | 1 | -15/+15 |
| | | | | | | | | Initial patch by Jelle Zijlstra. | ||||
* | | Closes #27722: Merge with 3.5 | Zachary Ware | 2016-08-09 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27722: Fix default for touch method's 'mode' argument | Zachary Ware | 2016-08-09 | 1 | -1/+1 |
| | | |||||
* | | Closes #27204: Merge with 3.5 | Zachary Ware | 2016-08-09 | 3 | -24/+29 |
|\ \ | |/ | |||||
| * | Issue #27204: Fix doctests in Doc/howto | Zachary Ware | 2016-08-09 | 3 | -24/+29 |
| | | | | | | | | Patch by Jelle Zijlstra. | ||||
* | | Merge with 3.5 | Zachary Ware | 2016-08-09 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Correct signatures for a couple of logging handlers | Zachary Ware | 2016-08-09 | 1 | -2/+2 |
| | | | | | | | | Reported by Oleg Gromyak on docs@ | ||||
* | | Issue #27700: Document AbstractEventLoop, not BaseEventLoop. (Merge 3.5->3.6) | Guido van Rossum | 2016-08-08 | 7 | -129/+138 |
|\ \ | |/ | |||||
| * | Issue #27700: Document AbstractEventLoop, not BaseEventLoop. | Guido van Rossum | 2016-08-08 | 7 | -129/+138 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-08-08 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Fix use of default reST role | Berker Peksag | 2016-08-08 | 1 | -3/+3 |
| | | |||||
* | | Issue #23322: Merge from 3.5 | Berker Peksag | 2016-08-08 | 1 | -7/+0 |
|\ \ | |/ | |||||
| * | Issue #23322: Remove outdated reference to an example in parser docs | Berker Peksag | 2016-08-08 | 1 | -7/+0 |
| | | | | | | | | Initial patch by Sahil Chelaramani. | ||||
* | | Merge 3.5 | Andrew Svetlov | 2016-08-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Use asyncio.gather instead of asyncio.wait in example. | Andrew Svetlov | 2016-08-08 | 1 | -1/+1 |
| | | | | | | | | | | gather will raise exception in case of problem but wait just returns done and pending lists of futures. For getting error every future result should be retrieved, which is boring and error prone. | ||||
* | | 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. | ||||
* | | Better docs for typing.Any by Michael Lee. Fixes issue #27688. (Merge 3.5->3.6) | Guido van Rossum | 2016-08-06 | 1 | -9/+71 |
|\ \ | |/ | |||||
| * | Better docs for typing.Any by Michael Lee. Fixes issue #27688. | Guido van Rossum | 2016-08-06 | 1 | -9/+71 |
| | | |||||
* | | Issue #26754: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 1 | -2/+3 |
| | | | | | | | | as path in compile() and similar functions is now deprecated. | ||||
* | | Issue #26800: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 1 | -0/+5 |
| | | | | | | | | as paths in os functions is now deprecated. | ||||
* | | Silence warnings from 'make suspicious' to make the docs buildbot happy | Berker Peksag | 2016-08-06 | 1 | -7/+9 |
| | | |||||
* | | Closes #22829: Added --prompt option to venv. | Vinay Sajip | 2016-08-06 | 2 | -1/+17 |
| | | |||||
* | | Issue #18548: Merge from 3.5 | Berker Peksag | 2016-08-06 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #18548: Fix unittest.TestSuite() example | Berker Peksag | 2016-08-06 | 1 | -2/+2 |
| | | | | | | | | Initial patch by py.user. | ||||
* | | Add AutoEnum: automatically provides next value if missing. Issue 26988. | Ethan Furman | 2016-08-05 | 1 | -65/+216 |
| | | |||||
* | | Clarify NotImplemented vs NotImplementedError. Initial patch by Emmanuel ↵ | Ethan Furman | 2016-08-05 | 2 | -10/+37 |
| | | | | | | | | Barry. Closes issue 27242. | ||||
* | | Add typing.Generator docs, by Michael Lee. (Merge 3.5->3.6) | Guido van Rossum | 2016-08-05 | 1 | -0/+29 |
|\ \ | |/ | |||||
| * | Add typing.Generator docs, by Michael Lee. | Guido van Rossum | 2016-08-05 | 1 | -0/+29 |
| | | |||||
* | | Merge spelling and grammar fixes from 3.5 | Martin Panter | 2016-08-05 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix spelling and grammar in documentation and code comments | Martin Panter | 2016-08-04 | 1 | -1/+1 |
| | | |||||
* | | Merge with 3.5 | Zachary Ware | 2016-08-04 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix half-finished sentence. | Zachary Ware | 2016-08-04 | 1 | -1/+1 |
| | | | | | | | | Reported by Linda Pescatore on docs@. | ||||
* | | Merge from 3.5 | Berker Peksag | 2016-08-04 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix indentation of versionadded directive in IPv4Address.reverse_pointer docs | Berker Peksag | 2016-08-04 | 1 | -1/+1 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-08-04 | 1 | -7/+4 |
|\ \ | |/ | |||||
| * | Indent ipaddress.ip_address() example correctly | Berker Peksag | 2016-08-04 | 1 | -7/+4 |
| | | |||||
* | | Issue #24278: Merge argument parsing docs from 3.5 | Martin Panter | 2016-08-04 | 1 | -14/+19 |
|\ \ | |/ | |||||
| * | Issue #24278: Explain how argument parsing output buffers are managed | Martin Panter | 2016-08-03 | 1 | -14/+19 |
| | | |||||
* | | Issue #23710: Merge from 3.5 | Berker Peksag | 2016-08-03 | 1 | -5/+9 |
|\ \ | |/ | |||||
| * | Issue #23710: Update PyObject_HEAD documentation | Berker Peksag | 2016-08-03 | 1 | -5/+9 |
| | | | | | | | | | | | | | | Since PEP 3123, PyObject_HEAD only has one field named ob_base. Users now need to use the Py_TYPE macro instead of self->ob_type. Initial patch by Ammar Askar. | ||||
* | | Issue #26576: Merge from 3.5 | Berker Peksag | 2016-08-03 | 1 | -4/+5 |
|\ \ | |/ | |||||
| * | Issue #26576: Clarify that the @deco syntax is not always an equivalent of f ↵ | Berker Peksag | 2016-08-03 | 1 | -4/+5 |
| | | | | | | | | | | | | = deco(f) Patch by Chris Angelico. | ||||
* | | Closes #27661: Added tzinfo keyword argument to datetime.combine. | Alexander Belopolsky | 2016-08-02 | 1 | -5/+12 |
| | |