Skip to content

Commit 46ea4f7

Browse files
committed
bump to 3.2a0
1 parent c216b27 commit 46ea4f7

11 files changed

Lines changed: 41 additions & 24 deletions

File tree

Doc/license.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ been GPL-compatible; the table below summarizes the various releases.
9494
+----------------+--------------+------------+------------+-----------------+
9595
| 3.0 | 2.6 | 2008 | PSF | yes |
9696
+----------------+--------------+------------+------------+-----------------+
97-
97+
| 3.1 | 3.0 | 2009 | PSF | yes |
98+
+----------------+--------------+------------+------------+-----------------+
99+
| 3.2 | 3.1 | 2009 | PSF | yes |
100+
+----------------+--------------+------------+------------+-----------------+
98101

99102
.. note::
100103

Doc/tutorial/interpreter.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ Using the Python Interpreter
1010
Invoking the Interpreter
1111
========================
1212

13-
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.1`
13+
The Python interpreter is usually installed as :file:`/usr/local/bin/python3.2`
1414
on those machines where it is available; putting :file:`/usr/local/bin` in your
1515
Unix shell's search path makes it possible to start it by typing the command ::
1616

17-
python3.1
17+
python3.2
1818

1919
to the shell. [#]_ Since the choice of the directory where the interpreter lives
2020
is an installation option, other places are possible; check with your local
2121
Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
2222
popular alternative location.)
2323

2424
On Windows machines, the Python installation is usually placed in
25-
:file:`C:\\Python31`, though you can change this when you're running the
25+
:file:`C:\\Python32`, though you can change this when you're running the
2626
installer. To add this directory to your path, you can type the following
2727
command into the command prompt in a DOS box::
2828

29-
set path=%path%;C:\python31
29+
set path=%path%;C:\python32
3030

3131
Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
3232
Windows) at the primary prompt causes the interpreter to exit with a zero exit

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 1
2121
#define PY_MICRO_VERSION 0
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
2323
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.1"
26+
#define PY_VERSION "3.1a0+"
2727
/*--end constants--*/
2828

2929
/* Subversion Revision number of this file (not of the repository) */

LICENSE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ the various releases.
6060
2.6 2.5 2008 PSF yes
6161
2.6.1 2.6 2008 PSF yes
6262
3.0 2.6 2008 PSF yes
63+
3.1 3.0 2009 PSF yes
64+
3.2 3.1 2009 PSF yes
6365

6466
Footnotes:
6567

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
# Updated automatically by the Python release process.
1616
#
1717
#--start constants--
18-
__version__ = "3.1"
18+
__version__ = "3.2a0"
1919
#--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 = "3.1"
1+
IDLE_VERSION = "3.2a0"

Misc/NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Python News
44

55
(editors: check NEWS.help for information about editing NEWS using ReST.)
66

7+
What's New in Python 3.2 Alpha 1?
8+
=================================
9+
10+
*Release date: XX-XXX-XXX*
11+
12+
Core and Builtins
13+
-----------------
14+
15+
Library
16+
-------
17+
18+
719
What's New in Python 3.1?
820
=========================
921

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
%define name python
3636
#--start constants--
37-
%define version 3.1
38-
%define libver 3.1
37+
%define version 3.2a0
38+
%define libver 3.2
3939
#--end constants--
4040
%define release 1pydotorg
4141
%define __prefix /usr

README

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

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

configure

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/sh
2-
# From configure.in Revision: 73274 .
2+
# From configure.in Revision: 73307 .
33
# Guess values for system-dependent variables and create Makefiles.
4-
# Generated by GNU Autoconf 2.61 for python 3.1.
4+
# Generated by GNU Autoconf 2.61 for python 3.2.
55
#
66
# Report bugs to <http://bugs.python.org/>.
77
#
@@ -575,8 +575,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
575575
# Identity of this package.
576576
PACKAGE_NAME='python'
577577
PACKAGE_TARNAME='python'
578-
PACKAGE_VERSION='3.1'
579-
PACKAGE_STRING='python 3.1'
578+
PACKAGE_VERSION='3.2'
579+
PACKAGE_STRING='python 3.2'
580580
PACKAGE_BUGREPORT='http://bugs.python.org/'
581581

582582
ac_unique_file="Include/object.h"
@@ -1246,7 +1246,7 @@ if test "$ac_init_help" = "long"; then
12461246
# Omit some internal or obsolete options to make the list less imposing.
12471247
# This message is too long to be a string in the A/UX 3.1 sh.
12481248
cat <<_ACEOF
1249-
\`configure' configures python 3.1 to adapt to many kinds of systems.
1249+
\`configure' configures python 3.2 to adapt to many kinds of systems.
12501250

12511251
Usage: $0 [OPTION]... [VAR=VALUE]...
12521252

@@ -1307,7 +1307,7 @@ fi
13071307

13081308
if test -n "$ac_init_help"; then
13091309
case $ac_init_help in
1310-
short | recursive ) echo "Configuration of python 3.1:";;
1310+
short | recursive ) echo "Configuration of python 3.2:";;
13111311
esac
13121312
cat <<\_ACEOF
13131313

@@ -1438,7 +1438,7 @@ fi
14381438
test -n "$ac_init_help" && exit $ac_status
14391439
if $ac_init_version; then
14401440
cat <<\_ACEOF
1441-
python configure 3.1
1441+
python configure 3.2
14421442
generated by GNU Autoconf 2.61
14431443

14441444
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1452,7 +1452,7 @@ cat >config.log <<_ACEOF
14521452
This file contains any messages produced by compilers while
14531453
running configure, to aid debugging if configure makes a mistake.
14541454

1455-
It was created by python $as_me 3.1, which was
1455+
It was created by python $as_me 3.2, which was
14561456
generated by GNU Autoconf 2.61. Invocation command line was
14571457

14581458
$ $0 $@
@@ -1826,7 +1826,7 @@ rm confdefs.h
18261826
mv confdefs.h.new confdefs.h
18271827

18281828

1829-
VERSION=3.1
1829+
VERSION=3.2
18301830

18311831

18321832
SOVERSION=1.0
@@ -25817,7 +25817,7 @@ exec 6>&1
2581725817
# report actual input values of CONFIG_FILES etc. instead of their
2581825818
# values after options handling.
2581925819
ac_log="
25820-
This file was extended by python $as_me 3.1, which was
25820+
This file was extended by python $as_me 3.2, which was
2582125821
generated by GNU Autoconf 2.61. Invocation command line was
2582225822

2582325823
CONFIG_FILES = $CONFIG_FILES
@@ -25866,7 +25866,7 @@ Report bugs to <bug-autoconf@gnu.org>."
2586625866
_ACEOF
2586725867
cat >>$CONFIG_STATUS <<_ACEOF
2586825868
ac_cs_version="\\
25869-
python config.status 3.1
25869+
python config.status 3.2
2587025870
configured by $0, generated by GNU Autoconf 2.61,
2587125871
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
2587225872

0 commit comments

Comments
 (0)