summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
* 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 #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-263-5/+5
|\ | | | | | | in the documentation.
| * Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-263-5/+5
| | | | | | | | in the documentation.
* | 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 #28678: Merge parameter name from 3.5 into 3.6Martin Panter2016-11-131-1/+1
|\ \ | |/
| * Issue #28678: Fix references to numeric_owner parameterMartin Panter2016-11-131-1/+1
| |
* | 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 #26638: Merge option warning fixes from 3.5 into 3.6Martin Panter2016-10-309-40/+40
|\ \ | |/
| * Issue #26638: Work around more CLI options that can’t be linkedMartin Panter2016-10-303-5/+5
| | | | | | | | | | | | * Cannot seem to link directly to main options from the “unittest” module, because that module has its own set of options * Mask out linking for options that no longer exist in Python 3
| * Issue #26638: Mask undefined CLI options to defeat new Sphinx warningsMartin Panter2016-10-309-35/+35
| |
* | Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(),Serhiy Storchaka2016-10-271-1/+4
| | | | | | | | | | PyUnicode_AsDecodedObject(), PyUnicode_AsDecodedUnicode() and PyUnicode_AsEncodedUnicode().
* | Issue #19795: Improved more markups of True/False.Serhiy Storchaka2016-10-192-6/+6
|\ \ | |/
| * Issue #19795: Improved more markups of True/False.Serhiy Storchaka2016-10-192-6/+6
| |
* | Issue #19795: Fixed markup errors.Serhiy Storchaka2016-10-192-2/+2
|\ \ | |/
| * Issue #19795: Fixed markup errors.Serhiy Storchaka2016-10-192-2/+2
| |
* | Issue #19795: Mark up True and False as literal text instead of bold.Serhiy Storchaka2016-10-192-5/+5
|\ \ | |/
| * Issue #19795: Mark up True and False as literal text instead of bold.Serhiy Storchaka2016-10-192-5/+5
| |
* | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-193-4/+4
|\ \ | |/
| * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-193-4/+4
| |
* | 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-232-1/+3
|\ \ | |/
| * Issue #28251: Improvements to help manuals on Windows.Steve Dower2016-09-232-2/+3
| |
* | 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.
* | 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
| |