python-peps/pep-0398.txt

126 lines
3.3 KiB
Plaintext
Raw Normal View History

2011-03-23 15:51:18 -04:00
PEP: 398
Title: Python 3.3 Release Schedule
Version: $Revision$
Last-Modified: $Date$
Author: Georg Brandl <georg@python.org>
Status: Active
Type: Informational
Content-Type: text/x-rst
Created: 23-Mar-2011
Python-Version: 3.3
Abstract
========
This document describes the development and release schedule for
Python 3.3. The schedule primarily concerns itself with PEP-sized
items. Small features may be added up to and including the first beta
release. Bugs may be fixed until the final release, which is planned
2012-07-16 16:13:48 -04:00
for September 2012.
2011-03-23 15:51:18 -04:00
Release Manager and Crew
========================
- 3.3 Release Manager: Georg Brandl
- Windows installers: Martin v. Löwis
- Mac installers: Ronald Oussoren/Ned Deily
- Documentation: Georg Brandl
Release Schedule
================
The current schedule is:
2011-03-27 03:47:51 -04:00
- 3.3.0 alpha 1: March 3, 2012
2012-05-01 07:40:12 -04:00
- 3.3.0 alpha 2: April 1, 2012
- 3.3.0 alpha 3: May 1, 2012
2011-03-27 03:47:51 -04:00
- 3.3.0 alpha 4: May 26, 2012
2012-06-23 02:51:34 -04:00
- 3.3.0 beta 1: June 26, 2012
2011-03-23 15:51:18 -04:00
(No new features beyond this point.)
2012-07-16 16:13:48 -04:00
- 3.3.0 beta 2: July 21, 2012
- 3.3.0 candidate 1: August 4, 2012
- 3.3.0 candidate 2: August 18, 2012
- 3.3.0 final: September 1, 2012
2011-03-23 15:51:18 -04:00
.. don't forget to update final date above as well
2012-05-01 07:40:12 -04:00
Every release day listed here is the prospective day of tagging the release;
the actual availability of the release for download on python.org will depend
on the schedules of the crew.
2011-03-23 15:51:18 -04:00
Features for 3.3
================
2012-01-29 01:39:39 -05:00
Implemented / Final PEPs:
2012-06-23 04:38:04 -04:00
* PEP 362: Function Signature Object
* PEP 380: Syntax for Delegating to a Subgenerator
* PEP 393: Flexible String Representation
2012-06-23 02:51:34 -04:00
* PEP 397: Python launcher for Windows
2012-01-29 01:39:39 -05:00
* PEP 399: Pure Python/C Accelerator Module Compatibility Requirements
2012-05-26 08:55:12 -04:00
* PEP 405: Python Virtual Environments
2012-03-04 10:41:28 -05:00
* PEP 409: Suppressing exception context
2012-05-01 07:40:12 -04:00
* PEP 412: Key-Sharing Dictionary
2012-03-04 10:41:28 -05:00
* PEP 414: Explicit Unicode Literal for Python 3.3
2012-05-21 13:51:16 -04:00
* PEP 415: Implement context suppression with exception attributes
2012-05-01 07:54:18 -04:00
* PEP 417: Including mock in the Standard Library
2012-05-01 07:40:12 -04:00
* PEP 418: Add monotonic time, performance counter, and process time functions
2012-05-25 12:50:24 -04:00
* PEP 420: Implicit Namespace Packages
2012-06-16 17:22:21 -04:00
* PEP 421: Adding sys.implementation
* PEP 3118: Revising the buffer protocol (protocol semantics finalised)
2012-05-21 13:51:16 -04:00
* PEP 3144: IP Address manipulation library
* PEP 3151: Reworking the OS and IO exception hierarchy
* PEP 3155: Qualified name for classes and functions
Other final large-scale changes:
2012-01-29 01:32:04 -05:00
* Addition of the "faulthandler" module
* Addition of the "lzma" module, and lzma/xz support in tarfile
2012-05-01 07:40:12 -04:00
* Implementing ``__import__`` using importlib
* Addition of the C decimal implementation
2012-06-23 02:51:34 -04:00
* Switch of Windows build toolchain to VS 2010
2011-03-23 15:51:18 -04:00
Candidate PEPs:
2012-06-23 04:38:04 -04:00
* None
2011-03-23 15:51:18 -04:00
2012-06-23 04:38:04 -04:00
.. (Note that these are not accepted yet and even if they are, they might
not be finished in time for Python 3.3.)
2011-03-23 15:51:18 -04:00
Other planned large-scale changes:
2012-06-23 02:51:34 -04:00
* None
Deferred to post-3.3:
2011-03-23 15:51:18 -04:00
* PEP 395: Qualified Names for Modules
2012-06-16 17:22:21 -04:00
* PEP 3143: Standard daemon process library
2012-06-23 02:51:34 -04:00
* PEP 3154: Pickle protocol version 4
* Breaking out standard library and docs in separate repos
* Addition of the "packaging" module, deprecating "distutils"
2012-06-23 02:51:34 -04:00
* Addition of the "regex" module
* Email version 6
* A standard event-loop interface (PEP by Jim Fulton pending)
2011-03-23 15:51:18 -04:00
Copyright
=========
This document has been placed in the public domain.
..
Local Variables:
mode: indented-text
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 70
coding: utf-8
End: