Skip to content

Commit 659fc42

Browse files
committed
Copyright and version tweaks for 3.0a3.
1 parent 014d4a0 commit 659fc42

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Doc/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The Python source is copyrighted, but you can freely use and copy it
123123
as long as you don't change or remove the copyright notice:
124124

125125
----------------------------------------------------------------------
126-
Copyright (c) 2000-2007 Python Software Foundation.
126+
Copyright (c) 2000-2008 Python Software Foundation.
127127
All rights reserved.
128128

129129
Copyright (c) 2000 BeOpen.com.

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
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 2
22+
#define PY_RELEASE_SERIAL 3
2323

2424
/* Version as a string */
25-
#define PY_VERSION "3.0a2+"
25+
#define PY_VERSION "3.0a3"
2626

2727
/* Subversion Revision number of this file (not of the repository) */
2828
#define PY_PATCHLEVEL_REVISION "$Revision$"

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ the various releases.
5555
2.4.4 2.4.3 2006 PSF yes
5656
2.5 2.4 2006 PSF yes
5757
2.5.1 2.5 2007 PSF yes
58-
2.6 2.5 unreleased PSF yes
58+
2.6 2.5 2008 PSF yes
5959
3.0 2.6 2007 PSF yes
6060

6161
Footnotes:
@@ -92,7 +92,7 @@ license to reproduce, analyze, test, perform and/or display publicly,
9292
prepare derivative works, distribute, and otherwise use Python
9393
alone or in any derivative version, provided, however, that PSF's
9494
License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
95-
2001, 2002, 2003, 2004, 2005, 2006, 2007 Python Software Foundation;
95+
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Python Software Foundation;
9696
All Rights Reserved" are retained in Python alone or in any derivative
9797
version prepared by Licensee.
9898

Lib/idlelib/NEWS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
What's New in IDLE 3.0a3?
22
=========================
33

4-
*Release date: XX-XXX-2008*
4+
*Release date: 29-Feb-2008*
55

66
- help() was not paging to the shell. Issue1650.
77

Lib/idlelib/idlever.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
IDLE_VERSION = "3.0a2"
1+
IDLE_VERSION = "3.0a3"

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Python News
77
What's New in Python 3.0a3?
88
===========================
99

10-
*Release date: XX-XXX-2008*
10+
*Release date: 29-Feb-2008*
1111

1212
Core and Builtins
1313
-----------------

PC/python_nt.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ BEGIN
6161
VALUE "FileDescription", "Python Core\0"
6262
VALUE "FileVersion", PYTHON_VERSION
6363
VALUE "InternalName", "Python DLL\0"
64-
VALUE "LegalCopyright", "Copyright � 2001-2007 Python Software Foundation. Copyright � 2000 BeOpen.com. Copyright � 1995-2001 CNRI. Copyright � 1991-1995 SMC.\0"
64+
VALUE "LegalCopyright", "Copyright � 2001-2008 Python Software Foundation. Copyright � 2000 BeOpen.com. Copyright � 1995-2001 CNRI. Copyright � 1991-1995 SMC.\0"
6565
VALUE "OriginalFilename", PYTHON_DLL_NAME "\0"
6666
VALUE "ProductName", "Python\0"
6767
VALUE "ProductVersion", PYTHON_VERSION

Python/getcopyright.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
static char cprt[] =
66
"\
7-
Copyright (c) 2001-2007 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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 3.0 alpha 2
1+
This is Python version 3.0 alpha 3
22
==================================
33

44
For notes specific to this release, see RELNOTES in this directory.
@@ -145,7 +145,7 @@ should do a "make clean" at the toplevel first.)
145145
Copyright and License Information
146146
---------------------------------
147147

148-
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007
148+
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
149149
Python Software Foundation.
150150
All rights reserved.
151151

0 commit comments

Comments
 (0)