summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.6.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
| |
* | Update whatsnew with my contributionsChristian Heimes2016-09-111-0/+80
| |
* | Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. ↵Eric V. Smith2016-09-111-0/+4
| | | | | | | | Thanks Serhiy Storchaka.
* | Issue #10740: sqlite3 no longer implicitly commit an open transaction before ↵Berker Peksag2016-09-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DDL statements This commit contains the following commits from ghaering/pysqlite: * https://github.com/ghaering/pysqlite/commit/f254c534948c41c0ceb8cbabf0d4a2f547754739 * https://github.com/ghaering/pysqlite/commit/796b3afe38cfdac5d7d5ec260826b0a596554631 * https://github.com/ghaering/pysqlite/commit/cae87ee68613697a5f4947b4a0941f59a28da1b6 * https://github.com/ghaering/pysqlite/commit/3567b31bb5e5b226ba006213a9c69dde3f155faf With the following additions: * Fixed a refcount error * Fixed a compiler warning * Made the string comparison a little more robust * Added a whatsnew entry
* | Issue #22493: Inline flags now should be used only at the start of theSerhiy Storchaka2016-09-111-0/+9
| | | | | | | | | | regular expression. Deprecation warning is emitted if uses them in the middle of the regular expression.
* | Issue #26885: xmlrpc now supports unmarshalling additional data types usedSerhiy Storchaka2016-09-111-0/+8
| | | | | | | | by Apache XML-RPC implementation for numerics and None.
* | fix link to instrumentationBenjamin Peterson2016-09-111-1/+1
| |
* | Issue #17909: Accept binary input in json.loadsNick Coghlan2016-09-101-0/+8
| | | | | | | | | | | | | | json.loads (and hence json.load) now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch by Serhiy Storchaka.
* | Actually fix suspicious markup, I ignored it too readilyZachary Ware2016-09-101-1/+1
| |
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-101-0/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later.
* | Closes #27976: Deprecate bundled full copy of libffiZachary Ware2016-09-101-0/+10
| | | | | | | | | | Builds on non-OSX UNIX now default to using the system libffi, and warn if the bundled copy is used.
* | #20476: add a message_factory policy attribute to email.R David Murray2016-09-091-0/+7
| |
* | Add links from whatsnew to Windows docs.Steve Dower2016-09-091-2/+5
| |
* | Merge headsSerhiy Storchaka2016-09-091-0/+28
|\ \
| * | Adds search path changes to whatsnew/3.6.rstSteve Dower2016-09-091-0/+5
| | |
| * | Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-0/+23
| | | | | | | | | | | | Thanks to Georg Brandl for the patch.
* | | Issue #433028: Added support of modifier spans in regular expressions.Serhiy Storchaka2016-09-091-0/+9
|/ /
* | Add tix deprecation to whatsnewZachary Ware2016-09-091-0/+3
| |
* | Doc updates for PEPs 520 and 468.Eric Snow2016-09-091-9/+19
| |
* | Mention how requiring ordered dicts breaks backwards-compatibility.Brett Cannon2016-09-091-1/+3
| |
* | Mention that the order-preserving aspect of the new dictBrett Cannon2016-09-091-1/+8
| | | | | | | | implementation is an implementation detail (and why that is so).
* | Add a few big-ticket items to What's new in 3.6.Guido van Rossum2016-09-091-0/+12
| |
* | credit RaymondBenjamin Peterson2016-09-091-1/+3
| |
* | Add policy keyword to email.generator.DecodedGenerator.R David Murray2016-09-081-0/+4
| |
* | Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-311-0/+19
| | | | | | | | Closes #17602: Adds a readline implementation for the Windows console
* | Add a new private version to the builtin dict typeVictor Stinner2016-09-081-0/+10
| | | | | | | | | | | | | | Issue #26058: Add a new private version to the builtin dict type, incremented at each dictionary creation and at each dictionary change. Implementation of the PEP 509.
* | #27364: Deprecate invalid escape strings in str/byutes.R David Murray2016-09-081-0/+5
| | | | | | | | Patch by Emanuel Barry, reviewed by Serhiy Storchaka and Martin Panter.
* | make some peps high level sectionsBenjamin Peterson2016-09-081-4/+4
| |
* | Issue #28027: Remove Lib/plat-* filesZachary Ware2016-09-081-0/+7
| |
* | fix pep roleBenjamin Peterson2016-09-081-1/+1
| |
* | Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-0/+29
| |