File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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$"
Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ Python News
66
77What's New in Python 3.0a2?
88
9- *Unreleased*
9+ *Release date: 07-Dec-2007*
10+
11+ (Note: this list is incomplete.)
1012
1113Core and Builtins
1214-----------------
Original file line number Diff line number Diff line change 1- This is Python version 3.0 alpha 1
1+ This is Python version 3.0 alpha 2
22==================================
33
44For notes specific to this release, see RELNOTES in this directory.
@@ -11,8 +11,8 @@ have changed considerably, and a lot of deprecated features have
1111finally been removed.
1212
1313This 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
1818Release 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+
5871Converting From Python 2.x to 3.0
5972---------------------------------
6073
Original file line number Diff line number Diff line change @@ -5,6 +5,15 @@ Release notes describe unfinished work in particular releases.
55
66Please 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+
817Version 3.0a1 - Release Date 31-Aug-2007
918----------------------------------------
1019
You can’t perform that action at this time.
0 commit comments