Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #24136: Adjust f-strings doc for interable unpacking | Martin Panter | 2016-06-12 | 1 | -1/+2 |
| | |||||
* | Issue #24136: Merge unpacking doc from 3.5 | Martin Panter | 2016-06-12 | 4 | -30/+64 |
|\ | |||||
| * | Issue #24136: Document generalized unpacking, PEP 448 | Martin Panter | 2016-06-12 | 4 | -30/+64 |
| | | | | | | | | Based on patches by Konstantin Molchanov and Neil Girdhar. | ||||
* | | Clarify that md5 is in the algorithms_guaranteed list despite what | Gregory P. Smith | 2016-06-12 | 1 | -1/+3 |
| | | | | | | | | | | some upstream vendors may do to their odd "FIPS compliant" builds. issue15468. | ||||
* | | issue15468 - use sha256 instead of md5 or sha1 in the examples. | Gregory P. Smith | 2016-06-12 | 1 | -8/+10 |
| | | | | | | | | | | | | document that md5 may be missing in the rare case someone is using a "FIPS compliant" build. I've only ever heard of Redhat creating one of those - CPython itself offers no such build mode out of the box. | ||||
* | | Issue #27140: Added BUILD_CONST_KEY_MAP opcode. | Serhiy Storchaka | 2016-06-11 | 1 | -0/+9 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-06-11 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix typo and silence a Sphinx warning in Doc/glossary.rst | Berker Peksag | 2016-06-11 | 1 | -1/+1 |
| | | |||||
* | | Merge from 3.5 | Berker Peksag | 2016-06-11 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Silence 'make suspicious' warnings | Berker Peksag | 2016-06-11 | 1 | -3/+3 |
| | | |||||
* | | Merge Issue #22558. | Terry Jan Reedy | 2016-06-11 | 221 | -134/+531 |
|\ \ | |/ | |||||
| * | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 221 | -134/+531 |
| | | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | | Issue #27029: Removed deprecated support of universal newlines mode from ↵ | Serhiy Storchaka | 2016-06-11 | 2 | -13/+13 |
| | | | | | | | | ZipFile.open(). | ||||
* | | Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in | Serhiy Storchaka | 2016-06-11 | 1 | -12/+11 |
| | | | | | | | | regular expressions now are errors. | ||||
* | | Issue #27186: Add os.PathLike support to DirEntry | Brett Cannon | 2016-06-10 | 1 | -0/+6 |
| | | | | | | | | Initial patch thanks to Jelle Zijlstra. | ||||
* | | Issue #27186: Add os.PathLike support to pathlib. | Brett Cannon | 2016-06-10 | 1 | -7/+16 |
| | | | | | | | | | | | | | | | | This adds support both to pathlib.PurePath's constructor as well as implementing __fspath__(). This removes the provisional status for pathlib. Initial patch by Dusty Phillips. | ||||
* | | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support | Serhiy Storchaka | 2016-06-09 | 3 | -2/+16 |
| | | | | | | | | positional-only and keyword parameters in the same function. | ||||
* | | Issue #27280: Merge from 3.5 | Berker Peksag | 2016-06-10 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27280: Fix typo in IPv6Network documentation | Berker Peksag | 2016-06-10 | 1 | -1/+1 |
| | | | | | | | | Patch by Arthur Carcano. | ||||
* | | Issue #24617: Merge os.mkdir() doc from 3.5 | Martin Panter | 2016-06-10 | 1 | -4/+10 |
|\ \ | |/ | |||||
| * | Issue #24617: Add comment for os.mkdir about mode quirks | Tommy Beadle | 2016-06-02 | 1 | -4/+10 |
| | | |||||
* | | Add a versionadded directive to os.PathLike | Berker Peksag | 2016-06-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #8491: Merge readline doc from 3.5 | Martin Panter | 2016-06-10 | 1 | -0/+7 |
|\ \ | |/ | |||||
| * | Issue #8491: Add link to Gnu Readline configuration documentation | Martin Panter | 2016-06-10 | 1 | -0/+7 |
| | | |||||
* | | Merge | Brett Cannon | 2016-06-09 | 4 | -11/+8 |
|\ \ | |||||
| * \ | Issue #15476: Merge index entries from 3.5 | Martin Panter | 2016-06-09 | 4 | -11/+8 |
| |\ \ | | |/ | |||||
| | * | [Issue 15476] Make "code object" its own entry in the index | Tommy Beadle | 2016-06-02 | 4 | -11/+8 |
| | | | |||||
* | | | Issue #27186: Document PyOS_FSPath(). | Brett Cannon | 2016-06-09 | 2 | -0/+13 |
|/ / | |||||
* | | Issue #27182: Document os.PathLike. | Brett Cannon | 2016-06-09 | 2 | -0/+24 |
| | | | | | | | | Part of PEP 519. | ||||
* | | Add a missing :term:. | Brett Cannon | 2016-06-09 | 1 | -1/+1 |
| | | |||||
* | | Clarify the os.fspath() documentation. | Brett Cannon | 2016-06-09 | 1 | -3/+4 |
| | | |||||
* | | Merge 3.5 (issue #27243) | Yury Selivanov | 2016-06-09 | 4 | -7/+63 |
|\ \ | |/ | |||||
| * | Issue #27243: Fix __aiter__ protocol | Yury Selivanov | 2016-06-09 | 4 | -7/+63 |
| | | |||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-08 | 2 | -20/+0 |
|\ \ | |/ | |||||
| * | asyncio: Remove asyncio.timeout() context manager. | Yury Selivanov | 2016-06-08 | 2 | -20/+0 |
| | | | | | | | | | | | | | | It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html | ||||
* | | Merge 3.5 (whatsnew) | Yury Selivanov | 2016-06-08 | 1 | -2/+7 |
|\ \ | |/ | |||||
| * | asyncio: Update whatsnew/3.5.2 | Yury Selivanov | 2016-06-08 | 1 | -2/+7 |
| | | |||||
* | | Merge 3.5 (asyncio, issue #27136) | Yury Selivanov | 2016-06-08 | 1 | -23/+24 |
|\ \ | |/ | |||||
| * | Issue #27136: Update asyncio docs | Yury Selivanov | 2016-06-08 | 1 | -23/+24 |
| | | |||||
| * | Issue #23275: Backport target list assignment documentation fixes | Martin Panter | 2016-06-08 | 1 | -15/+14 |
| | | |||||
* | | Fix RST conflicts with Idle news entries | Martin Panter | 2016-06-08 | 1 | -0/+1 |
| | | |||||
* | | Issue #21593: Merge from 3.5 | Berker Peksag | 2016-06-08 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #21593: Clarify that re.search() returns the first match | Berker Peksag | 2016-06-08 | 1 | -2/+2 |
| | | |||||
* | | Issue #25738: Merge HTTP server from 3.5 | Martin Panter | 2016-06-08 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Issue #25738: Don’t send message body for 205 Reset Content | Martin Panter | 2016-06-08 | 1 | -1/+3 |
| | | | | | | | | Patch by Susumu Koshiba. | ||||
* | | Merge 3.5 (os.urandom) | Victor Stinner | 2016-06-07 | 1 | -3/+10 |
|\ \ | |/ | |||||
| * | os.urandom() doesn't block on Linux anymore | Victor Stinner | 2016-06-07 | 1 | -3/+10 |
| | | | | | | | | | | | | Issue #26839: On Linux, os.urandom() now calls getrandom() with GRND_NONBLOCK to fall back on reading /dev/urandom if the urandom entropy pool is not initialized yet. Patch written by Colm Buckley. | ||||
* | | Issue #23883: News updates for __all__ attributes | Martin Panter | 2016-06-06 | 1 | -3/+5 |
| | | |||||
* | | Issue #26014: merge from 3.5 | Ned Deily | 2016-06-06 | 4 | -3/+12 |
|\ \ | |/ | |||||
| * | Issue #26014: Update 3.x packaging documentation: | Ned Deily | 2016-06-06 | 4 | -3/+12 |
| | | | | | | | | | | | | | | - "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun) |