summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23756: Clarify the terms "contiguous" and "bytes-like object".Stefan Krah2015-08-081-4/+4
| | | | Patch by Martin Panter.
* Issue #15944: memoryview: Allow arbitrary formats when casting to bytes.Stefan Krah2015-08-081-1/+4
| | | | Original patch by Martin Panter.
* Issue #21279: Merge with 3.4Zachary Ware2015-08-061-10/+11
|\
| * Issue #21279: Flesh out str.translate docsZachary Ware2015-08-061-10/+11
| | | | | | | | Initial patch by Kinga Farkas, Martin Panter, and John Posner.
* | Fix trailing ws.Guido van Rossum2015-08-051-9/+9
| |
* | Merge docs for typing.py from accidental branch.Guido van Rossum2015-08-051-0/+415
|\ \
| * | Issue #24272: Initial docs for typing.py (PEP 484).Guido van Rossum2015-08-031-0/+415
| | | | | | | | | | | | By Daniel Andrade Groppe and Ivan Levkivskyi.
* | | Issue #20769: Improve reload() docs. Patch by Dorian Pula.Robert Collins2015-08-041-5/+5
|\ \ \ | |/ / |/| / | |/
| * Issue #20769: Improve reload() docs. Patch by Dorian Pula.Robert Collins2015-08-041-5/+5
| |
* | Remove warning about asyncio being provisional (it's not in 3.5 and up).Guido van Rossum2015-08-021-7/+0
| |
* | Merge with 3.4Terry Jan Reedy2015-07-301-2/+0
|\ \ | |/
| * Issue #13884: Idle: Remove tearoff lines from menus. Patch by Roger Serwy.Terry Jan Reedy2015-07-301-2/+0
| |
* | Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and ↵Berker Peksag2015-07-301-4/+4
|\ \ | |/ | | | | | | | | | | | | Codec.decode() docs. It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode(). Patch by Nick Weinhold.
| * Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and ↵Berker Peksag2015-07-301-4/+4
| | | | | | | | | | | | | | | | Codec.decode() docs. It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode(). Patch by Nick Weinhold.
* | Issue #15582: Add a whatsnew entry for inspect.getdoc() changes in 3.5.Berker Peksag2015-07-301-0/+3
| | | | | | | | Patch by Martin Panter.
* | Issue #24109: Include Tools/scripts/diff.py instead of duplicating it in ↵Berker Peksag2015-07-291-62/+1
| | | | | | | | | | | | difflib documentation. Patch by Keith Gray.
* | Issue #23254: Document how to close the TCPServer listening socket.Robert Collins2015-07-291-2/+11
|\ \ | |/ | | | | Patch from Martin Panter.
| * Issue #23254: Document how to close the TCPServer listening socket.Robert Collins2015-07-291-2/+11
| | | | | | | | Patch from Martin Panter.
* | What's New in Python 3.5: document os.urandom() changesVictor Stinner2015-07-291-0/+6
| |
* | Issue #24420: Fix documentation regression introduced by f0a00ee094ff.Berker Peksag2015-07-251-3/+19
| | | | | | | | | | | | These functions accept same arguments as subprocess.Popen(). Patch by Martin Panter.
* | Add versionchanged information for mock_open.Robert Collins2015-07-231-0/+8
|\ \ | |/
| * Add versionchanged information for mock_open.Robert Collins2015-07-231-0/+8
| |
* | Issue #21750: Further fixup to be styled like other mock APIs.Robert Collins2015-07-231-3/+5
|\ \ | |/
| * Issue #21750: Further fixup to be styled like other mock APIs.Robert Collins2015-07-231-3/+5
| |
* | Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.Robert Collins2015-07-221-4/+8
|\ \ | |/
| * Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.Robert Collins2015-07-221-4/+8
| |
| * Fix usage of the default role.Zachary Ware2015-07-071-35/+35
| | | | | | | | | | The changes to Doc/library/unittest.mock.rst are almost entirely a selective backport of the 3.5 page.
| * Fix suspicious markupZachary Ware2015-07-071-1/+1
| |
* | - Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optionalBarry Warsaw2015-07-091-14/+31
| | | | | | | | initial-response argument to the SMTP AUTH command.
* | Fix usage of the default role.Zachary Ware2015-07-072-4/+4
| |
* | merge 3.4Benjamin Peterson2015-07-061-1/+1
|\ \ | |/
| * 'not' is very important hereBenjamin Peterson2015-07-061-1/+1
| |
* | merge 3.4Benjamin Peterson2015-07-061-3/+3
|\ \ | |/
| * tighten warningBenjamin Peterson2015-07-061-3/+3
| |
* | Issue #24330: merge from 3.4Ned Deily2015-07-041-1/+2
|\ \ | |/
| * Issue #24330: Update IDLE doc and help to note "Configure IDLE" differenceNed Deily2015-07-041-1/+2
| | | | | | | | on OS X. Original patch by André Freitas.
* | Merge: #24584: replace dead link with pointer to archive.org.R David Murray2015-07-041-1/+1
|\ \ | |/
| * #24584: replace dead link with pointer to archive.org.R David Murray2015-07-041-1/+1
| |
* | Issue #24400: Resurrect inspect.isawaitable()Yury Selivanov2015-07-032-8/+29
| | | | | | | | | | | | | | | | collections.abc.Awaitable and collections.abc.Coroutine no longer use __instancecheck__ hook to detect generator-based coroutines. inspect.isawaitable() can be used to detect generator-based coroutines and to distinguish them from regular generator objects.
* | Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-032-1/+11
| |
* | Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines.Yury Selivanov2015-07-031-0/+7
| | | | | | | | Patch by Benno Leslie and Yury Selivanov.
* | Issue #24400: Mention that __instancecheck__ is used in abc.Awaitable and ↵Yury Selivanov2015-07-011-0/+12
| | | | | | | | Coroutine
* | Issue #24487: Rename async() -> ensure_future() in asyncio docs.Yury Selivanov2015-07-014-13/+13
| | | | | | | | Patch by Martin Panter.
* | Issue #24541: Drop test_inspect.test_eightteen unittest; update docsYury Selivanov2015-07-011-1/+1
| | | | | | | | Suggested by Martin Panter.
* | Issue #24400: Remove inspect.isawaitable().Yury Selivanov2015-06-301-10/+0
| | | | | | | | | | | | isawaitable() was added before collections.abc.Awaitable; now, with Awaitable, it is no longer needed (we don't have ishashable() or isiterable() methods in the inspect module either).
* | upgrade to Unicode 8.0.0Benjamin Peterson2015-06-272-5/+5
| |
* | Issue #23684: Clarify the return value of the scheme attribute of ↵Berker Peksag2015-06-251-7/+9
|\ \ | |/ | | | | | | | | ParseResult and SplitResult objects. Patch by Martin Panter.
| * Issue #23684: Clarify the return value of the scheme attribute of ↵Berker Peksag2015-06-251-7/+9
| | | | | | | | | | | | ParseResult and SplitResult objects. Patch by Martin Panter.
* | Merge 3.4 (issue #24509)Yury Selivanov2015-06-251-3/+9
|\ \ | |/
| * Issue #24509: Clarify Handle.cancel() and loop.call_* methods.Yury Selivanov2015-06-251-3/+9
| |