Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ab5a044

Browse files
committed
merge 3.2.2 release branch for rc
2 parents 349c900 + 195261e commit ab5a044

10 files changed

Lines changed: 20 additions & 16 deletions

File tree

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,4 @@ cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1
9494
ac1f7e5c05104d557d5acd922e95625ba5d1fe10 v3.2.1
9595
c860feaa348d663e598986894ee4680480577e15 v3.2.2rc1
9696
137e45f15c0bd262c9ad4c032d97425bc0589456 v3.2.2
97+
7085403daf439adb3f9e70ef13f6bedb1c447376 v3.2.3rc1

Doc/license.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@ been GPL-compatible; the table below summarizes the various releases.
118118
+----------------+--------------+------------+------------+-----------------+
119119
| 3.2.2 | 3.2.1 | 2011 | PSF | yes |
120120
+----------------+--------------+------------+------------+-----------------+
121+
| 3.2.3 | 3.2.2 | 2012 | PSF | yes |
122+
+----------------+--------------+------------+------------+-----------------+
121123

122124
.. note::
123125

Include/patchlevel.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
/*--start constants--*/
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 2
21-
#define PY_MICRO_VERSION 2
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23-
#define PY_RELEASE_SERIAL 0
21+
#define PY_MICRO_VERSION 3
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23+
#define PY_RELEASE_SERIAL 1
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.2.2+"
26+
#define PY_VERSION "3.2.3rc1"
2727
/*--end constants--*/
2828

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

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ the various releases.
7373
3.2 3.1 2011 PSF yes
7474
3.2.1 3.2 2011 PSF yes
7575
3.2.2 3.2.1 2011 PSF yes
76+
3.2.3 3.2.2 2012 PSF yes
7677

7778
Footnotes:
7879

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# Updated automatically by the Python release process.
1414
#
1515
#--start constants--
16-
__version__ = "3.2.2"
16+
__version__ = "3.2.3rc1"
1717
#--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.2.2"
1+
IDLE_VERSION = "3.2.3rc1"

Misc/NEWS

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22
Python News
33
+++++++++++
44

5-
What's New in Python 3.2.3?
6-
===========================
5+
What's New in Python 3.2.3 release candidate 1?
6+
===============================================
77

8-
*Release date: XX-XXX-2011*
8+
*Release date: 24-Feb-2011*
99

1010
Core and Builtins
1111
-----------------
1212

13-
- Issue #14084: Fix a file descriptor leak when importing a module with a
14-
bad encoding.
15-
1613
- Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED
1714
environment variable, to provide an opt-in way to protect against denial of
1815
service attacks due to hash collisions within the dict and set types. Patch
1916
by David Malcolm, based on work by Victor Stinner.
2017

18+
- Issue #14084: Fix a file descriptor leak when importing a module with a
19+
bad encoding.
20+
2121
- Issue #13020: Fix a reference leak when allocating a structsequence object
2222
fails. Patch by Suman Saha.
2323

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.2.2
42+
%define version 3.2.3rc1
4343
%define libvers 3.2
4444
#--end constants--
4545
%define release 1pydotorg

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-2011 Python Software Foundation. Copyright � 2000 BeOpen.com. Copyright � 1995-2001 CNRI. Copyright � 1991-1995 SMC.\0"
64+
VALUE "LegalCopyright", "Copyright � 2001-2012 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

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.2.2
2-
============================
1+
This is Python version 3.2.3 rc1
2+
================================
33

44
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
55
2012 Python Software Foundation. All rights reserved.

0 commit comments

Comments
 (0)