Skip to content

Commit 260a788

Browse files
committed
Version bump to 3.2 final.
1 parent 14927d0 commit 260a788

File tree

6 files changed

+37
-46
lines changed

6 files changed

+37
-46
lines changed

Include/patchlevel.h

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

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

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

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.2rc3"
18+
__version__ = "3.2"
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.2rc3"
1+
IDLE_VERSION = "3.2"

Misc/NEWS

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ Core and Builtins
1212

1313
- Issue #11249: Fix potential crashes when using the limited API.
1414

15-
Library
16-
-------
17-
1815
Build
1916
-----
2017

@@ -42,40 +39,40 @@ Core and Builtins
4239

4340
- Issue #11135: Remove redundant doc field from PyType_Spec.
4441

45-
- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
46-
in the limited ABI.
42+
- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited
43+
ABI.
4744

4845
- Issue #11118: Fix bogus export of None in python3.dll.
4946

5047
Library
5148
-------
5249

53-
- Issue #11116: any error during addition of a message to a mailbox now causes
54-
a rollback, instead of leaving the mailbox partially modified.
50+
- Issue #11116: any error during addition of a message to a mailbox now causes a
51+
rollback, instead of leaving the mailbox partially modified.
5552

56-
- Issue #11132: Fix passing of "optimize" parameter when recursing
57-
in compileall.compile_dir().
53+
- Issue #11132: Fix passing of "optimize" parameter when recursing in
54+
compileall.compile_dir().
5855

5956
- Issue #11110: Fix a potential decref of a NULL in sqlite3.
6057

61-
- Issue #8275: Fix passing of callback arguments with ctypes under Win64.
62-
Patch by Stan Mihai.
58+
- Issue #8275: Fix passing of callback arguments with ctypes under Win64. Patch
59+
by Stan Mihai.
6360

6461
Build
6562
-----
6663

67-
- Issue #11079: The /Applications/Python x.x folder created by the Mac
68-
OS X installers now includes a link to the installed documentation
69-
and no longer includes an Extras directory. The Tools directory is
70-
now installed in the framework under share/doc.
64+
- Issue #11079: The /Applications/Python x.x folder created by the Mac OS X
65+
installers now includes a link to the installed documentation and no longer
66+
includes an Extras directory. The Tools directory is now installed in the
67+
framework under share/doc.
7168

7269
- Issue #11121: Fix building with --enable-shared.
7370

7471
Tests
7572
-----
7673

77-
- Issue #10971: test_zipimport_support is once again compatible with the
78-
refleak hunter feature of test.regrtest.
74+
- Issue #10971: test_zipimport_support is once again compatible with the refleak
75+
hunter feature of test.regrtest.
7976

8077

8178
What's New in Python 3.2 Release Candidate 2?

Misc/RPM/python-3.2.spec

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

4040
%define name python
4141
#--start constants--
42-
%define version 3.2rc3
42+
%define version 3.2
4343
%define libvers 3.2
4444
#--end constants--
4545
%define release 1pydotorg

README

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
This is Python version 3.2, release candidate 3
2-
===============================================
1+
This is Python version 3.2
2+
==========================
33

44
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5-
Python Software Foundation.
6-
All rights reserved.
5+
Python Software Foundation. All rights reserved.
76

87
Python 3.x is a new version of the language, which is incompatible with the 2.x
98
line of releases. The language is mostly the same, but many details, especially
@@ -153,8 +152,8 @@ Proposals for enhancement
153152
-------------------------
154153

155154
If you have a proposal to change Python, you may want to send an email to the
156-
comp.lang.python or python-ideas mailing lists for inital feedback. A Python
157-
Enhancement Proposal (PEP) may be submitted if your idea gains ground. All
155+
comp.lang.python or python-ideas mailing lists for inital feedback. A Python
156+
Enhancement Proposal (PEP) may be submitted if your idea gains ground. All
158157
current PEPs, as well as guidelines for submitting a new PEP, are listed at
159158
http://www.python.org/dev/peps/.
160159

@@ -168,26 +167,21 @@ See PEP 392 for release details: http://www.python.org/dev/peps/pep-0392/
168167
Copyright and License Information
169168
---------------------------------
170169

171-
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
172-
Python Software Foundation.
173-
All rights reserved.
170+
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
171+
Python Software Foundation. All rights reserved.
174172

175-
Copyright (c) 2000 BeOpen.com.
176-
All rights reserved.
173+
Copyright (c) 2000 BeOpen.com. All rights reserved.
177174

178-
Copyright (c) 1995-2001 Corporation for National Research Initiatives.
179-
All rights reserved.
175+
Copyright (c) 1995-2001 Corporation for National Research Initiatives. All
176+
rights reserved.
180177

181-
Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
182-
All rights reserved.
178+
Copyright (c) 1991-1995 Stichting Mathematisch Centrum. All rights reserved.
183179

184-
See the file "LICENSE" for information on the history of this
185-
software, terms & conditions for usage, and a DISCLAIMER OF ALL
186-
WARRANTIES.
180+
See the file "LICENSE" for information on the history of this software, terms &
181+
conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.
187182

188-
This Python distribution contains *no* GNU General Public License
189-
(GPL) code, so it may be used in proprietary projects. There are
190-
interfaces to some GNU code but these are entirely optional.
183+
This Python distribution contains *no* GNU General Public License (GPL) code, so
184+
it may be used in proprietary projects. There are interfaces to some GNU code
185+
but these are entirely optional.
191186

192-
All trademarks referenced herein are property of their respective
193-
holders.
187+
All trademarks referenced herein are property of their respective holders.

0 commit comments

Comments
 (0)