Skip to content

Commit 4d578a6

Browse files
author
guido.van.rossum
committed
Get ready for releasing 3.0a2.
(Next: update the whatsnew docs.) git-svn-id: http://svn.python.org/projects/python/branches/py3k@59382 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 05517d3 commit 4d578a6

4 files changed

Lines changed: 30 additions & 6 deletions

File tree

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
#define PY_MINOR_VERSION 0
2020
#define PY_MICRO_VERSION 0
2121
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
22-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_SERIAL 2
2323

2424
/* Version as a string */
25-
#define PY_VERSION "3.0a1+"
25+
#define PY_VERSION "3.0a2"
2626

2727
/* Subversion Revision number of this file (not of the repository) */
2828
#define PY_PATCHLEVEL_REVISION "$Revision$"

Misc/NEWS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Python News
66

77
What's New in Python 3.0a2?
88

9-
*Unreleased*
9+
*Release date: 07-Dec-2007*
10+
11+
(Note: this list is incomplete.)
1012

1113
Core and Builtins
1214
-----------------

README

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.0 alpha 1
1+
This is Python version 3.0 alpha 2
22
==================================
33

44
For notes specific to this release, see RELNOTES in this directory.
@@ -11,8 +11,8 @@ have changed considerably, and a lot of deprecated features have
1111
finally been removed.
1212

1313
This is an ongoing project; the cleanup isn't expected to be complete
14-
until 2008. In particular there are plans to reorganize the standard
15-
library namespace.
14+
until some time in 2008. In particular there are plans to reorganize
15+
the standard library namespace.
1616

1717

1818
Release Schedule
@@ -55,6 +55,19 @@ We'll eventually have a comprehensive overview of the changes in a
5555
"What's New in Python 3.0" document. Please help write it!
5656

5757

58+
What's New Since 3.0a1
59+
----------------------
60+
61+
Undoubtedly the biggest change is in the bytes type: 'bytes' is now
62+
immutable, and there is a new mutable bytes type 'bytearray'. These
63+
two types are interoperable in every way. For more info on this
64+
issue, read PEP 3137.
65+
66+
For a more detailed change log, read Misc/NEWS (though this file, too,
67+
is incomplete, and also doesn't list anything merged in from the 2.6
68+
release under development).
69+
70+
5871
Converting From Python 2.x to 3.0
5972
---------------------------------
6073

RELNOTES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ Release notes describe unfinished work in particular releases.
55

66
Please report bugs to http://bugs.python.org/.
77

8+
Version 3.0a2 - Release Date 07-Dec-2007
9+
----------------------------------------
10+
11+
* SSL support is back! However, the SSL code appears to be leaking
12+
quite a bit.
13+
14+
* Otherwise, the 3.0a1 release notes still apply, except hashlib no
15+
longer requires openssl.
16+
817
Version 3.0a1 - Release Date 31-Aug-2007
918
----------------------------------------
1019

0 commit comments

Comments
 (0)