summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-25910: Link redirections in docs (#1933)Sanyam Khurana2018-01-201-1/+1
| | | Fixes some redirection links in docs.
* bpo-25910: Fixes redirection from http to https (#4674)Sanyam Khurana2017-12-061-2/+2
|
* bpo-29898: Fix incorrect env variable name (GH-1576)Berker Peksag2017-05-161-1/+1
| | | | It should read PYTHONLEGACYWINDOWSSTDIO as stated in section "Add legacy mode" in PEP 528.
* bpo-29956: Improve the math.exp() related documentation. (#1073)Serhiy Storchaka2017-05-041-2/+2
|
* bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494)INADA Naoki2017-03-061-2/+0
|
* Issue #26273: Document TCP_USER_TIMEOUT and TCP_CONGESTIONVictor Stinner2017-01-231-0/+3
|
* Issue #29316: Restore the provisional status of typing module and addNed Deily2017-01-201-6/+3
| | | | corresponding note to documentation. Patch by Ivan L.
* Issue #29239: Fix --enable-optimizations bug numberMartin Panter2017-01-111-1/+1
|
* Clearer compact dict attribution to the original proposalRaymond Hettinger2016-12-301-2/+7
|
* Merge 3.6.0 release engineering headNed Deily2016-12-231-0/+3
|\
| * Update docs and patchlevel for 3.6.0 final.v3.6.0Ned Deily2016-12-221-0/+3
| |
| * Issue #28635: asyncio-related fixes and additions.Yury Selivanov2016-12-151-6/+16
| | | | | | | | (grafted from 418ba3a0f090ac0e17a935b7cd5a63ea8263a914)
| * Issue #28979: Fix What's New in Python 3.6, dictVictor Stinner2016-12-151-1/+1
| | | | | | | | | | | | | | The new dict implementation is not faster, but more compact. Patch written by Brendan Donegan. (grafted from 181453f9a0c424212f0f6ddca2b9065c15689d7c)
| * Issue #28089: Document TCP_NODELAY in asyncioYury Selivanov2016-12-121-0/+3
| | | | | | | | | | Initial patch by Mariatta Wijaya. (grafted from 853e3f4d6cd98ac4590238bc1c60e40fd8ed3895)
| * Issue #28896: Deprecate WindowsRegistryFinderSteve Dower2016-12-071-0/+4
| | | | | | | | (grafted from 25df9671663b5f8b1560d58d8842f9676f6dffc2)
| * Issue #28635: Drop the note that whatsnew is incompleteYury Selivanov2016-12-081-9/+0
| | | | | | | | (grafted from d12bc674b74eee73365e38fad1f170ed3349bd59)
* | Issue #28987: Typos, grammar, spelling in documentationMartin Panter2016-12-181-1/+1
| |
* | Issue #28635: asyncio-related fixes and additions.Yury Selivanov2016-12-151-6/+16
| |
* | Issue #28979: Fix What's New in Python 3.6, dictVictor Stinner2016-12-151-1/+1
| | | | | | | | | | | | The new dict implementation is not faster, but more compact. Patch written by Brendan Donegan.
* | Issue #28089: Document TCP_NODELAY in asyncioYury Selivanov2016-12-121-0/+3
| | | | | | | | Initial patch by Mariatta Wijaya.
* | Issue #28896: Deprecate WindowsRegistryFinderSteve Dower2016-12-071-0/+4
| |
* | Issue #28635: Drop the note that whatsnew is incompleteYury Selivanov2016-12-081-9/+0
|/
* Issue #27030: Unknown escapes in re.sub() replacement template are allowedSerhiy Storchaka2016-12-061-2/+3
| | | | again. But they still are deprecated and will be disabled in 3.7.
* Issue #23722: improve __classcell__ compatibilityNick Coghlan2016-12-051-0/+10
| | | | | | | | | | | | | | | | | | | | | Handling zero-argument super() in __init_subclass__ and __set_name__ involved moving __class__ initialisation to type.__new__. This requires cooperation from custom metaclasses to ensure that the new __classcell__ entry is passed along appropriately. The initial implementation of that change resulted in abruptly broken zero-argument super() support in metaclasses that didn't adhere to the new requirements (such as Django's metaclass for Model definitions). The updated approach adopted here instead emits a deprecation warning for those cases, and makes them work the same way they did in Python 3.5. This patch also improves the related class machinery documentation to cover these details and to include more reader-friendly cross-references and index entries.
* Issue #27172: Undeprecate inspect.getfullargspec()Nick Coghlan2016-12-021-0/+7
| | | | | | This is still useful for single source Python 2/3 code migrating away from inspect.getargspec(), but that wasn't clear with the documented deprecation in place.
* Issue #28635: Document Python 3.6 opcode changesYury Selivanov2016-11-281-0/+34
| | | | | | Thanks to Serhiy Storchaka for pointing out the missing notes. Patch by Elvis Pranskevichus.
* Fix grammar in whatsnewZachary Ware2016-11-281-1/+1
|
* Issue #28532: Add what's new entry for python -VV optionINADA Naoki2016-11-241-0/+12
|
* Fix up grammar, markup, etc in 3.6 What’s NewMartin Panter2016-11-211-51/+51
|
* replace --with-optimizations references with --enable-optimizations in docs.Gregory P. Smith2016-11-211-1/+1
|\
* | Issue #27998: Documented bytes paths support on Windows.Serhiy Storchaka2016-11-201-0/+2
| |
* | Issue #28720: Add collections.abc.AsyncGenerator.Yury Selivanov2016-11-161-0/+4
| |
* | Issue #28635: what's new in 3.6: add a few more notes on typingYury Selivanov2016-11-141-4/+26
| | | | | | | | | | Per suggestions by Ivan Levkivskyi. Patch by Elvis Pranskevichus.
* | Issue #28635: what's new in 3.6: remove mentions of backported fixes.Yury Selivanov2016-11-101-38/+2
| | | | | | | | Patch by Elvis Pranskevichus.
* | Issue #28635: What's New in Python 3.6 updatesYury Selivanov2016-11-101-220/+851
| | | | | | | | Patch by Elvis Pranskevichus.
* | whatsnew: Inital pass on "What's New in Python 3.6"Yury Selivanov2016-11-071-226/+359
| | | | | | | | Patch by Elvis Pranskevichus.
* | Closes #27781: Removes special cases for the experimental aspect of PEP 529Steve Dower2016-11-071-5/+0
| |
* | Issue #28605: Fix the help and What's New entry for --with-optimizations.Brett Cannon2016-11-031-1/+1
| |
* | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(),Serhiy Storchaka2016-10-271-1/+4
| | | | | | | | | | PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode().
* | Issue #28390: Fix header levels in whatsnew/3.6.rstBerker Peksag2016-10-081-2/+2
| | | | | | | | Patch by SilentGhost.
* | Remove mention of asyncio.timeout context manager (it was removed)Guido van Rossum2016-09-241-4/+0
| |
* | Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-231-1/+1
|\ \ | |/
* | Issue #28137: Renames Windows path file to ._pthSteve Dower2016-09-171-1/+1
| | | | | | | | Issue #28138: Windows ._pth file should allow import site
* | Pending final editing of 3.6 whatsnew, add a list of all PEPs implemented.Ned Deily2016-09-161-1/+23
| |
* | Unicode 9.0.0Benjamin Peterson2016-09-151-0/+7
| | | | | | | | | | Not completely mechanical since support for East Asian Width changes—emoji codepoints became Wide—had to be added to unicodedata.
* | Add text about PEP 526 to What's new in 3.6. Ivan L.Guido van Rossum2016-09-131-1/+37
| |
* | Add an Android section to whatsnew/3.6.rst.Xavier de Gaye2016-09-131-0/+5
| |
* | Tidy 3.6 What's New summaryNed Deily2016-09-131-0/+2
| |
* | Fix headers in whatsnew/3.6.rstBerker Peksag2016-09-131-14/+14
| |
* | Issue #27350: Document compact dict memory usageVictor Stinner2016-09-121-0/+2
| |