Skip to content

Commit f4586f7

Browse files
author
barry.warsaw
committed
Updating for 2.6a2
git-svn-id: http://svn.python.org/projects/python/trunk@62123 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent e99b585 commit f4586f7

5 files changed

Lines changed: 14 additions & 7 deletions

File tree

Include/patchlevel.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,16 @@
1919
/* Higher for patch releases */
2020

2121
/* Version parsed out into numeric values */
22+
/*--start constants--*/
2223
#define PY_MAJOR_VERSION 2
2324
#define PY_MINOR_VERSION 6
2425
#define PY_MICRO_VERSION 0
2526
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
26-
#define PY_RELEASE_SERIAL 1
27+
#define PY_RELEASE_SERIAL 2
2728

2829
/* Version as a string */
29-
#define PY_VERSION "2.6a1+"
30+
#define PY_VERSION "2.6a2"
31+
/*--end constants--*/
3032

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

Lib/distutils/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@
2020
# In general, major and minor version should loosely follow the Python
2121
# version number the distutils code was shipped with.
2222
#
23-
__version__ = "2.6.0"
23+
24+
#--start constants--
25+
__version__ = "2.6a2"
26+
#--end constants--

Lib/idlelib/idlever.py

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

Misc/RPM/python-2.6.spec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@
3333
#################################
3434

3535
%define name python
36-
%define version 2.6a1
37-
%define libvers 2.6
36+
#--start constants--
37+
%define version 2.6a2
38+
%define libver 2.6
39+
#--end constants--
3840
%define release 1pydotorg
3941
%define __prefix /usr
4042

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is Python version 2.6 alpha 1
1+
This is Python version 2.6 alpha 2
22
==================================
33

44
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008

0 commit comments

Comments
 (0)