Touch-ups for Python 3.5 release schedule.

This commit is contained in:
Larry Hastings 2015-08-10 17:18:01 -07:00
parent 131b9e0328
commit 5552ce3603
1 changed files with 18 additions and 29 deletions

View File

@ -34,53 +34,42 @@ Release Manager and Crew
Release Schedule
================
The releases:
The releases so far:
- 3.5.0 alpha 1: February 8, 2015
- 3.5.0 alpha 2: March 9, 2015
- 3.5.0 alpha 3: March 29, 2015
- 3.5.0 alpha 4: April 19, 2015
- 3.5.0 beta 1: May 24, 2015
(Beta 1 is also "feature freeze"--no new features beyond this point.)
- 3.5.0 beta 2: May 31, 2015
- 3.5.0 beta 3: July 5, 2015
- 3.5.0 beta 4: July 26, 2015
- 3.5.0 candidate 1: August 9, 2015
- 3.5.0 candidate 2: August 23, 2015
- 3.5.0 candidate 3: September 6, 2015
- 3.5.0 release candidate 1: August 10, 2015
Planned future release dates:
- 3.5.0 release candidate 2: August 23, 2015
- 3.5.0 release candidate 3: September 6, 2015
- 3.5.0 final: September 13, 2015
(Beta 1 is also "feature freeze"--no new features beyond this point.)
Features for 3.5
================
Implemented / Final PEPs:
* PEP 465, a new matrix multiplication operator
* PEP 461, %-formatting for binary strings
* PEP 471, os.scandir()
* PEP 479, change StopIteration handling inside generators
* PEP 441, improved Python zip application support
* PEP 448, additional unpacking generalizations
* PEP 486, make the Python Launcher aware of virtual environments
* PEP 475, retrying system calls that fail with EINTR
* PEP 492, coroutines with async and await syntax
* PEP 488, elimination of PYO files
* PEP 484, type hints
* PEP 489, redesigning extension module loading
* PEP 461, "%-formatting" for bytes and bytearray objects
* PEP 465, a new operator ("@") for matrix multiplication
* PEP 471, os.scandir(), a fast new directory traversal function
* PEP 475, adding support for automatic retries of interrupted system calls
* PEP 479, change StopIteration handling inside generators
* PEP 484, the typing module, a new standard for type annotations
* PEP 485, math.isclose(), a function for testing approximate equality
Proposed changes for 3.5:
* PEP 431, improved support for time zone databases
* PEP 432, simplifying Python's startup sequence
* PEP 436, a build tool generating boilerplate for extension modules
* PEP 447, support for __locallookup__ metaclass method
* PEP 468, preserving the order of ``**kwargs`` in a function
* PEP 486, making the Widnows Python launcher aware of virtual environments
* PEP 488, eliminating .pyo files
* PEP 489, a new and improved mechanism for loading extension modules
* PEP 492, coroutines with async and await syntax
Copyright