Skip to content

Commit cb6727e

Browse files
committed
Prepare for 2.3.7c1.
1 parent d254ca8 commit cb6727e

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

Include/patchlevel.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
/* Version parsed out into numeric values */
2222
#define PY_MAJOR_VERSION 2
2323
#define PY_MINOR_VERSION 3
24-
#define PY_MICRO_VERSION 6
25-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
26-
#define PY_RELEASE_SERIAL 0
24+
#define PY_MICRO_VERSION 7
25+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
26+
#define PY_RELEASE_SERIAL 1
2727

2828
/* Version as a string */
29-
#define PY_VERSION "2.3.6"
29+
#define PY_VERSION "2.3.7c1"
3030

3131
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
3232
Use this for numeric comparisons, e.g. #if PY_VERSION_HEX >= ... */

LICENSE

+4-3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ the various releases.
4949
2.3.4 2.3.3 2004 PSF yes
5050
2.3.5 2.3.4 2004-2005 PSF yes
5151
2.3.6 2.3.5 2006 PSF yes
52+
2.3.7 2.3.6 2008 PSF yes
5253

5354
Footnotes:
5455

@@ -84,9 +85,9 @@ license to reproduce, analyze, test, perform and/or display publicly,
8485
prepare derivative works, distribute, and otherwise use Python 2.3
8586
alone or in any derivative version, provided, however, that PSF's
8687
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
87-
2001, 2002, 2003, 2004 Python Software Foundation; All Rights Reserved" are
88-
retained in Python 2.3 alone or in any derivative version prepared by
89-
Licensee.
88+
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software
89+
Foundation; All Rights Reserved" are retained in Python 2.3 alone or
90+
in any derivative version prepared by Licensee.
9091

9192
3. In the event Licensee prepares a derivative work that is based on
9293
or incorporates Python 2.3 or any part thereof, and wants to make

Misc/RPM/python-2.3.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#################################
3434

3535
%define name python
36-
%define version 2.3.6
36+
%define version 2.3.7
3737
%define libvers 2.3
3838
%define release 1pydotorg
3939
%define __prefix /usr

Python/getcopyright.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
static char cprt[] =
66
"\
7-
Copyright (c) 2001-2005 Python Software Foundation.\n\
7+
Copyright (c) 2001-2008 Python Software Foundation.\n\
88
All Rights Reserved.\n\
99
\n\
1010
Copyright (c) 2000 BeOpen.com.\n\

README

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
This is Python version 2.3.6
2-
============================
1+
This is Python version 2.3.7c1
2+
==============================
33

4-
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation.
4+
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation.
55
All rights reserved.
66

77
Copyright (c) 2000 BeOpen.com.

0 commit comments

Comments
 (0)