summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
* Remove mention of asyncio.timeout context manager (it was removed) (merge ↵Guido van Rossum2016-09-241-4/+0
|\ | | | | | | 3.6->3.7)
| * 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-233-2/+5
|\ \ | |/
| * Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-232-1/+3
| |\
| | * Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-232-2/+3
| | |
* | | Merge with 3.6Steve Dower2016-09-171-1/+1
|\ \ \ | |/ /
| * | Issue #28137: Renames Windows path file to ._pthSteve Dower2016-09-171-1/+1
| | | | | | | | | | | | Issue #28138: Windows ._pth file should allow import site
* | | Closes #27979: Remove bundled copy of libffiZachary Ware2016-09-171-0/+4
| | | | | | | | | | | | | | | An installed copy of libffi is now required for building _ctypes on any platform but OSX and Windows.
* | | Pending final editing of 3.6 whatsnew, add a list of all PEPs implemented.Ned Deily2016-09-161-1/+23
|\ \ \ | |/ /
| * | Pending final editing of 3.6 whatsnew, add a list of all PEPs implemented.Ned Deily2016-09-161-1/+23
| | |
* | | merge 3.6Benjamin Peterson2016-09-151-0/+7
|\ \ \ | |/ /
| * | 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. (merge 3.6->3.7)Guido van Rossum2016-09-131-1/+37
|\ \ \ | |/ /
| * | Add text about PEP 526 to What's new in 3.6. Ivan L.Guido van Rossum2016-09-131-1/+37
| | |
* | | Merge from 3.6.Xavier de Gaye2016-09-131-0/+5
|\ \ \ | |/ /
| * | Add an Android section to whatsnew/3.6.rst.Xavier de Gaye2016-09-131-0/+5
| | |
* | | merge from 3.6Ned Deily2016-09-131-0/+2
|\ \ \ | |/ /
| * | Tidy 3.6 What's New summaryNed Deily2016-09-131-0/+2
| | |
* | | Merge from 3.6Berker Peksag2016-09-131-14/+14
|\ \ \ | |/ /
| * | Fix headers in whatsnew/3.6.rstBerker Peksag2016-09-131-14/+14
| | |
* | | Bump to 3.7.0a0Ned Deily2016-09-122-0/+116
|/ /
* | 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.
* | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-2/+1
| |
* | fix link to instrumentationBenjamin Peterson2016-09-111-1/+1
| |
* | Merge spelling fixes from 3.5Martin Panter2016-09-101-2/+2
|\ \ | |/
| * Correct spelling in documentation and code commentMartin Panter2016-09-101-2/+2
| |
* | 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
| |
* | merge 3.5 (#28051)Benjamin Peterson2016-09-091-5/+6
|\ \ | |/
| * repair errors in (set|get)_task_factory note (#28051)Benjamin Peterson2016-09-091-5/+6
| |
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
| |
* | 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
| |