[Python-checkins] r61185 - in python/branches/release23-maint: Include/patchlevel.h LICENSE Misc/RPM/python-2.3.spec Python/getcopyright.c README
martin.v.loewis
python-checkins at python.org
Sun Mar 2 21:39:32 CET 2008
Author: martin.v.loewis
Date: Sun Mar 2 21:39:32 2008
New Revision: 61185
Modified:
python/branches/release23-maint/Include/patchlevel.h
python/branches/release23-maint/LICENSE
python/branches/release23-maint/Misc/RPM/python-2.3.spec
python/branches/release23-maint/Python/getcopyright.c
python/branches/release23-maint/README
Log:
Prepare for 2.3.7c1.
Modified: python/branches/release23-maint/Include/patchlevel.h
==============================================================================
--- python/branches/release23-maint/Include/patchlevel.h (original)
+++ python/branches/release23-maint/Include/patchlevel.h Sun Mar 2 21:39:32 2008
@@ -21,12 +21,12 @@
/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION 2
#define PY_MINOR_VERSION 3
-#define PY_MICRO_VERSION 6
-#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
-#define PY_RELEASE_SERIAL 0
+#define PY_MICRO_VERSION 7
+#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
+#define PY_RELEASE_SERIAL 1
/* Version as a string */
-#define PY_VERSION "2.3.6"
+#define PY_VERSION "2.3.7c1"
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */
Modified: python/branches/release23-maint/LICENSE
==============================================================================
--- python/branches/release23-maint/LICENSE (original)
+++ python/branches/release23-maint/LICENSE Sun Mar 2 21:39:32 2008
@@ -49,6 +49,7 @@
2.3.4 2.3.3 2004 PSF yes
2.3.5 2.3.4 2004-2005 PSF yes
2.3.6 2.3.5 2006 PSF yes
+ 2.3.7 2.3.6 2008 PSF yes
Footnotes:
@@ -84,9 +85,9 @@
prepare derivative works, distribute, and otherwise use Python 2.3
alone or in any derivative version, provided, however, that PSF's
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
-2001, 2002, 2003, 2004 Python Software Foundation; All Rights Reserved" are
-retained in Python 2.3 alone or in any derivative version prepared by
-Licensee.
+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software
+Foundation; All Rights Reserved" are retained in Python 2.3 alone or
+in any derivative version prepared by Licensee.
3. In the event Licensee prepares a derivative work that is based on
or incorporates Python 2.3 or any part thereof, and wants to make
Modified: python/branches/release23-maint/Misc/RPM/python-2.3.spec
==============================================================================
--- python/branches/release23-maint/Misc/RPM/python-2.3.spec (original)
+++ python/branches/release23-maint/Misc/RPM/python-2.3.spec Sun Mar 2 21:39:32 2008
@@ -33,7 +33,7 @@
#################################
%define name python
-%define version 2.3.6
+%define version 2.3.7
%define libvers 2.3
%define release 1pydotorg
%define __prefix /usr
Modified: python/branches/release23-maint/Python/getcopyright.c
==============================================================================
--- python/branches/release23-maint/Python/getcopyright.c (original)
+++ python/branches/release23-maint/Python/getcopyright.c Sun Mar 2 21:39:32 2008
@@ -4,7 +4,7 @@
static char cprt[] =
"\
-Copyright (c) 2001-2005 Python Software Foundation.\n\
+Copyright (c) 2001-2008 Python Software Foundation.\n\
All Rights Reserved.\n\
\n\
Copyright (c) 2000 BeOpen.com.\n\
Modified: python/branches/release23-maint/README
==============================================================================
--- python/branches/release23-maint/README (original)
+++ python/branches/release23-maint/README Sun Mar 2 21:39:32 2008
@@ -1,7 +1,7 @@
-This is Python version 2.3.6
-============================
+This is Python version 2.3.7c1
+==============================
-Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.
+Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation.
All rights reserved.
Copyright (c) 2000 BeOpen.com.
More information about the Python-checkins
mailing list