[Python-3000-checkins] r65080 - in python/branches/py3k: Include/patchlevel.h Lib/distutils/__init__.py Lib/idlelib/idlever.py Misc/NEWS Misc/RPM/python-3.0.spec README RELNOTES

barry.warsaw python-3000-checkins at python.org
Fri Jul 18 04:28:44 CEST 2008


Author: barry.warsaw
Date: Fri Jul 18 04:28:44 2008
New Revision: 65080

Log:
Bumping to 3.0b2

Modified:
   python/branches/py3k/Include/patchlevel.h
   python/branches/py3k/Lib/distutils/__init__.py
   python/branches/py3k/Lib/idlelib/idlever.py
   python/branches/py3k/Misc/NEWS
   python/branches/py3k/Misc/RPM/python-3.0.spec
   python/branches/py3k/README
   python/branches/py3k/RELNOTES

Modified: python/branches/py3k/Include/patchlevel.h
==============================================================================
--- python/branches/py3k/Include/patchlevel.h	(original)
+++ python/branches/py3k/Include/patchlevel.h	Fri Jul 18 04:28:44 2008
@@ -20,10 +20,10 @@
 #define PY_MINOR_VERSION	0
 #define PY_MICRO_VERSION	0
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_BETA
-#define PY_RELEASE_SERIAL	1
+#define PY_RELEASE_SERIAL	2
 
 /* Version as a string */
-#define PY_VERSION      	"3.0b1+"
+#define PY_VERSION      	"3.0b2"
 /*--end constants--*/
 
 /* Subversion Revision number of this file (not of the repository) */

Modified: python/branches/py3k/Lib/distutils/__init__.py
==============================================================================
--- python/branches/py3k/Lib/distutils/__init__.py	(original)
+++ python/branches/py3k/Lib/distutils/__init__.py	Fri Jul 18 04:28:44 2008
@@ -20,5 +20,5 @@
 #
 
 #--start constants--
-__version__ = "3.0b1"
+__version__ = "3.0b2"
 #--end constants--

Modified: python/branches/py3k/Lib/idlelib/idlever.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/idlever.py	(original)
+++ python/branches/py3k/Lib/idlelib/idlever.py	Fri Jul 18 04:28:44 2008
@@ -1 +1 @@
-IDLE_VERSION = "3.0b1"
+IDLE_VERSION = "3.0b2"

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Fri Jul 18 04:28:44 2008
@@ -7,7 +7,7 @@
 What's new in Python 3.0b2?
 ===========================
 
-*Release date: XX-XXX-2008*
+*Release date: 17-Jul-2008*
 
 Core and Builtins
 -----------------

Modified: python/branches/py3k/Misc/RPM/python-3.0.spec
==============================================================================
--- python/branches/py3k/Misc/RPM/python-3.0.spec	(original)
+++ python/branches/py3k/Misc/RPM/python-3.0.spec	Fri Jul 18 04:28:44 2008
@@ -34,7 +34,7 @@
 
 %define name python
 #--start constants--
-%define version 3.0b1
+%define version 3.0b2
 %define libver 3.0
 #--end constants--
 %define release 1pydotorg

Modified: python/branches/py3k/README
==============================================================================
--- python/branches/py3k/README	(original)
+++ python/branches/py3k/README	Fri Jul 18 04:28:44 2008
@@ -1,4 +1,4 @@
-This is Python version 3.0 beta 1
+This is Python version 3.0 beta 2
 =================================
 
 For notes specific to this release, see RELNOTES in this directory.
@@ -22,7 +22,7 @@
 ----------------
 
 The release plan is to have a series of alpha releases in 2007 and 2008,
-beta releases in 2008, and a final release in September 2008.  The alpha
+beta releases in 2008, and a final release in October 2008.  The alpha
 releases are primarily aimed at developers who want a sneak peek at the
 new langauge, especially those folks who plan to port their code to
 Python 3000.  The hope is that by the time of the final release, many

Modified: python/branches/py3k/RELNOTES
==============================================================================
--- python/branches/py3k/RELNOTES	(original)
+++ python/branches/py3k/RELNOTES	Fri Jul 18 04:28:44 2008
@@ -6,6 +6,19 @@
 Please report bugs to http://bugs.python.org/.
 
 
+Version 3.0b2 - Release Date 17-Jul-2008
+----------------------------------------
+
+Please search the bug tracker for critical issues in Python 3.0.
+
+The bsddb3 library is known to be in bad shape.  The Python 2.6 version needs
+to be ported to Python 3.0, but so far, no one has done this.
+
+There are several known deferred blockers (issues that will block the next
+release).  These include, but are not limited to, problems with 2to3,
+multiprocessing, and bytearrays.
+
+
 Version 3.0b1 - Release Date 18-Jun-2008
 ----------------------------------------
 


More information about the Python-3000-checkins mailing list