2001-04-18 06:28:43 -04:00
|
|
|
PEP: 251
|
|
|
|
Title: Python 2.2 Release Schedule
|
2022-10-05 12:48:43 -04:00
|
|
|
Author: Barry Warsaw <barry@python.org>, Guido van Rossum <guido@python.org>
|
2001-12-24 15:58:36 -05:00
|
|
|
Status: Final
|
2001-04-18 06:28:43 -04:00
|
|
|
Type: Informational
|
2022-10-06 21:01:52 -04:00
|
|
|
Topic: Release
|
2017-01-07 13:33:00 -05:00
|
|
|
Content-Type: text/x-rst
|
2001-04-18 06:28:43 -04:00
|
|
|
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
|
|
|
|
2017-01-07 13:33:00 -05:00
|
|
|
|
2001-04-18 06:28:43 -04:00
|
|
|
Abstract
|
2017-01-07 13:33:00 -05:00
|
|
|
========
|
2001-04-18 06:28:43 -04:00
|
|
|
|
2017-01-07 13:33:00 -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
|
|
|
|
2017-01-07 13:33:00 -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
|
2017-01-07 13:33:00 -05:00
|
|
|
================
|
2001-04-18 06:28:43 -04:00
|
|
|
|
2017-01-07 13:33:00 -05: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
|
|
|
|
2017-01-07 13:33:00 -05:00
|
|
|
* 21-Dec-2001: 2.2 [Released] (final release)
|
|
|
|
* 14-Dec-2001: 2.2c1 [Released]
|
|
|
|
* 14-Nov-2001: 2.2b2 [Released]
|
|
|
|
* 19-Oct-2001: 2.2b1 [Released]
|
|
|
|
* 28-Sep-2001: 2.2a4 [Released]
|
|
|
|
* 7-Sep-2001: 2.2a3 [Released]
|
|
|
|
* 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
|
2017-01-07 13:33:00 -05:00
|
|
|
===============
|
2001-08-13 17:03:12 -04:00
|
|
|
|
2017-01-07 13:33:00 -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
|
2017-01-07 13:33:00 -05:00
|
|
|
=================
|
2001-06-22 11:36:31 -04:00
|
|
|
|
2017-01-07 13:33:00 -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
|
2022-01-21 06:03:51 -05:00
|
|
|
:pep:`101` for the actual release mechanics.
|
2001-06-22 11:36:31 -04:00
|
|
|
|
|
|
|
|
2001-12-24 15:58:36 -05:00
|
|
|
New features for Python 2.2
|
2017-01-07 13:33:00 -05:00
|
|
|
===========================
|
2001-06-22 11:36:31 -04:00
|
|
|
|
2017-01-07 13:33:00 -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
|
|
|
|
2022-01-21 06:03:51 -05:00
|
|
|
- iterators (:pep:`234`)
|
|
|
|
- generators (:pep:`255`)
|
|
|
|
- unifying long ints and plain ints (:pep:`237`)
|
|
|
|
- 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
|
2017-01-07 13:33:00 -05:00
|
|
|
==========
|
2001-04-18 06:28:43 -04:00
|
|
|
|
2017-01-07 13:33:00 -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
|
|
|
|
2017-01-07 13:33:00 -05:00
|
|
|
.. [3] Andrew Kuchling, What's New in Python 2.2
|
|
|
|
http://www.python.org/doc/2.2.1/whatsnew/whatsnew22.html
|
2001-04-18 06:28:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
Copyright
|
2017-01-07 13:33:00 -05:00
|
|
|
=========
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|