forked from python/peps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpep-0375.txt
103 lines (76 loc) · 2.04 KB
/
pep-0375.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
PEP: 375
Title: Python 3.1 Release Schedule
Version: $Revision$
Last-Modified: $Date$
Author: Benjamin Peterson <[email protected]>
Status: Final
Type: Informational
Content-Type: text/x-rst
Created: 8-Feb-2009
Python-Version: 3.1
Abstract
========
This document describes the development and release schedule for Python 3.1.
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.
Release Manager and Crew
========================
=================== ==================
Position Name
=================== ==================
3.1 Release Manager Benjamin Peterson
Windows installers Martin v. Loewis
Mac installers Ronald Oussoren
=================== ==================
Release Schedule
================
- 3.1a1 March 7, 2009
- 3.1a2 April 4, 2009
- 3.1b1 May 6, 2009
- 3.1rc1 May 30, 2009
- 3.1rc2 June 13, 2009
- 3.1 final June 27, 2009
Maintenance Releases
====================
3.1 is no longer maintained. 3.1 received security fixes until June
2012.
Previous maintenance releases are:
- v3.1.1rc1 2009-08-13
- v3.1.1 2009-08-16
- v3.1.2rc1 2010-03-06
- v3.1.2 2010-03-20
- v3.1.3rc1 2010-11-13
- v3.1.3 2010-11-27
- v3.1.4rc1 2011-05-29
- v3.1.4 2011-06-11
- v3.1.5rc1 2012-02-23
- v3.1.5rc2 2012-03-15
- v3.1.5 2012-04-06
Features for 3.1
================
- importlib
- io in C
- Update simplejson to the latest external version [#simplejson]_.
- Ordered dictionary for collections [#ordered]_.
- auto-numbered replacement fields in str.format() strings [#strformat]_
- Nested with-statements in one with statement
Footnotes
=========
.. [#simplejson]
http://bugs.python.org/issue4136
.. [#ordered] PEP 372
http://www.python.org/dev/peps/pep-0372/
.. [#strformat]
http://bugs.python.org/issue5237
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: