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

barry.warsaw python-3000-checkins at python.org
Thu May 8 13:54:14 CEST 2008


Author: barry.warsaw
Date: Thu May  8 13:54:13 2008
New Revision: 62856

Log:
Bumping versions for 3.0a5

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/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	Thu May  8 13:54:13 2008
@@ -20,10 +20,10 @@
 #define PY_MINOR_VERSION	0
 #define PY_MICRO_VERSION	0
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL	4
+#define PY_RELEASE_SERIAL	5
 
 /* Version as a string */
-#define PY_VERSION      	"3.0a4+"
+#define PY_VERSION      	"3.0a5"
 /*--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	Thu May  8 13:54:13 2008
@@ -20,5 +20,5 @@
 #
 
 #--start constants--
-__version__ = "3.0a4"
+__version__ = "3.0a5"
 #--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	Thu May  8 13:54:13 2008
@@ -1 +1 @@
-IDLE_VERSION = "3.0a4"
+IDLE_VERSION = "3.0a5"

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	Thu May  8 13:54:13 2008
@@ -34,7 +34,7 @@
 
 %define name python
 #--start constants--
-%define version 3.0a4
+%define version 3.0a5
 %define libver 3.0
 #--end constants--
 %define release 1pydotorg

Modified: python/branches/py3k/README
==============================================================================
--- python/branches/py3k/README	(original)
+++ python/branches/py3k/README	Thu May  8 13:54:13 2008
@@ -1,4 +1,4 @@
-This is Python version 3.0 alpha 4
+This is Python version 3.0 alpha 5
 ==================================
 
 For notes specific to this release, see RELNOTES in this directory.
@@ -70,22 +70,14 @@
 
 Please help write it!
 
-If you want to install multiple versions of Python see the section below
-entitled "Installing multiple versions".
-
-
-What's New Since 3.0a1
-----------------------
-
-Undoubtedly the biggest change is in the bytes type: 'bytes' is now
-immutable, and there is a new mutable bytes type 'bytearray'.  These
-two types are interoperable in every way.  For more info on this
-issue, read PEP 3137.
-
 For a more detailed change log, read Misc/NEWS (though this file, too,
 is incomplete, and also doesn't list anything merged in from the 2.6
 release under development).
 
+If you want to install multiple versions of Python see the section below
+entitled "Installing multiple versions".
+
+
 Proposals for enhancement
 -------------------------
 
@@ -95,13 +87,14 @@
 current PEPs, as well as guidelines for submitting a new PEP, are listed at
 http://www.python.org/dev/peps/.
 
+
 Converting From Python 2.x to 3.0
 ---------------------------------
 
-Python 2.6 (not yet released) will contain features to help locating
-code that needs to be changed, such as optional warnings when
-deprecated features are used, and backported versions of certain key
-Python 3000 features.
+Python 2.6 (to be released concurrent with Python 3.0) will contain features
+to help locating code that needs to be changed, such as optional warnings when
+deprecated features are used, and backported versions of certain key Python
+3000 features.
 
 
 Installing multiple versions

Modified: python/branches/py3k/RELNOTES
==============================================================================
--- python/branches/py3k/RELNOTES	(original)
+++ python/branches/py3k/RELNOTES	Thu May  8 13:54:13 2008
@@ -5,6 +5,13 @@
 
 Please report bugs to http://bugs.python.org/.
 
+
+Version 3.0a5 - Release Date 08-May-2008
+----------------------------------------
+
+Please search the bug tracker for critical issues in Python 3.0.
+
+
 Version 3.0a2 - Release Date 07-Dec-2007
 ----------------------------------------
 


More information about the Python-3000-checkins mailing list