2001-04-18 06:28:43 -04:00
|
|
|
|
PEP: 251
|
|
|
|
|
Title: Python 2.2 Release Schedule
|
|
|
|
|
Version: $Revision$
|
2006-03-23 15:13:19 -05:00
|
|
|
|
Last-Modified: $Date$
|
2007-06-28 15:53:41 -04:00
|
|
|
|
Author: barry@python.org (Barry Warsaw), guido@python.org (Guido van Rossum)
|
2001-12-24 15:58:36 -05:00
|
|
|
|
Status: Final
|
2001-04-18 06:28:43 -04:00
|
|
|
|
Type: Informational
|
|
|
|
|
Created: 17-Apr-2001
|
|
|
|
|
Python-Version: 2.2
|
2001-08-14 12:59:58 -04:00
|
|
|
|
Post-History: 14-Aug-2001
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
This document describes the Python 2.2 development and release
|
|
|
|
|
schedule. The schedule primarily concerns itself with PEP-sized
|
|
|
|
|
items. Small bug fixes and changes will occur up until the first
|
|
|
|
|
beta release.
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
The schedule below represents the actual release dates of Python
|
|
|
|
|
2.2. Note that any subsequent maintenance releases of Python 2.2
|
|
|
|
|
should be covered by separate PEPs.
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
|
|
|
|
Release Schedule
|
|
|
|
|
|
2001-08-13 17:03:12 -04:00
|
|
|
|
Tentative future release dates. Note that we've slipped this
|
|
|
|
|
compared to the schedule posted around the release of 2.2a1.
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
21-Dec-2001: 2.2 [Released] (final release)
|
|
|
|
|
14-Dec-2001: 2.2c1 [Released]
|
2001-11-16 19:19:37 -05:00
|
|
|
|
14-Nov-2001: 2.2b2 [Released]
|
2001-10-26 14:07:45 -04:00
|
|
|
|
19-Oct-2001: 2.2b1 [Released]
|
2001-10-18 13:50:46 -04:00
|
|
|
|
28-Sep-2001: 2.2a4 [Released]
|
2003-06-14 01:32:14 -04:00
|
|
|
|
7-Sep-2001: 2.2a3 [Released]
|
2001-10-18 13:50:46 -04:00
|
|
|
|
22-Aug-2001: 2.2a2 [Released]
|
|
|
|
|
18-Jul-2001: 2.2a1 [Released]
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
|
|
|
|
|
2001-08-13 17:03:12 -04:00
|
|
|
|
Release Manager
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
Barry Warsaw was the Python 2.2 release manager.
|
2001-08-13 17:03:12 -04:00
|
|
|
|
|
|
|
|
|
|
2001-06-22 11:36:31 -04:00
|
|
|
|
Release Mechanics
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
We experimented with a new mechanism for releases: a week before
|
|
|
|
|
every alpha, beta or other release, we forked off a branch which
|
|
|
|
|
became the release. Changes to the branch are limited to the
|
|
|
|
|
release manager and his designated 'bots. This experiment was
|
|
|
|
|
deemed a success and should be observed for future releases. See
|
|
|
|
|
PEP 101 for the actual release mechanics[1].
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
New features for Python 2.2
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
The following new features are introduced in Python 2.2. For a
|
|
|
|
|
more detailed account, see Misc/NEWS[2] in the Python
|
|
|
|
|
distribution, or Andrew Kuchling's "What's New in Python 2.2"
|
|
|
|
|
document[3].
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
2001-08-13 17:03:12 -04:00
|
|
|
|
- iterators (PEP 234)
|
|
|
|
|
- generators (PEP 255)
|
2001-12-24 15:58:36 -05:00
|
|
|
|
- unifying long ints and plain ints (PEP 237)
|
2001-08-13 17:03:12 -04:00
|
|
|
|
- division (PEP 238)
|
|
|
|
|
- unification of types and classes (PEP 252, PEP 253)
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
References
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
[1] PEP 101, Doing Python Releases 101
|
2009-01-18 04:50:42 -05:00
|
|
|
|
http://www.python.org/dev/peps/pep-0101/
|
2001-12-24 15:58:36 -05:00
|
|
|
|
|
|
|
|
|
[2] Misc/NEWS file from CVS
|
|
|
|
|
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/python/python/dist/src/Misc/NEWS?rev=1.337.2.4&content-type=text/vnd.viewcvs-markup
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
|
[3] Andrew Kuchling, What's New in Python 2.2
|
2002-04-18 16:08:17 -04:00
|
|
|
|
http://www.python.org/doc/2.2.1/whatsnew/whatsnew22.html
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
End:
|