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

Skip to content

Commit 00ebeb5

Browse files
committed
Merge 3.2.1 release clone into main repo.
2 parents 4875c46 + bb9c7d0 commit 00ebeb5

7 files changed

Lines changed: 21 additions & 23 deletions

File tree

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2
9090
8ffac2337a3323323d02153ac919fd1483176652 v3.2.1b1
9191
cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1
9292
5df549718fb4841ff521fe051f6b54f290fad5d8 v3.2.1rc2
93+
ac1f7e5c05104d557d5acd922e95625ba5d1fe10 v3.2.1

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 1
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 2
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.2.1rc2+"
26+
#define PY_VERSION "3.2.1+"
2727
/*--end constants--*/
2828

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

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.2.1rc2"
18+
__version__ = "3.2.1"
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.2.1rc2"
1+
IDLE_VERSION = "3.2.1"

Misc/NEWS

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Python News
55
What's New in Python 3.2.2?
66
===========================
77

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

1010
Core and Builtins
1111
-----------------
@@ -24,9 +24,6 @@ Library
2424
- Issue #12493: subprocess: Popen.communicate() now also handles EINTR errors
2525
if the process has only one pipe.
2626

27-
- Issue #12467: warnings: fix a race condition if a warning is emitted at
28-
shutdown, if globals()['__file__'] is None.
29-
3027
- Issue #12451: pydoc: html_getfile() now uses tokenize.open() to support
3128
Python scripts using a encoding different than UTF-8 (read the coding cookie
3229
of the script).
@@ -47,17 +44,10 @@ C-API
4744
Tests
4845
-----
4946

50-
- Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
51-
failure in name resolution.
52-
5347
- Avoid failing in test_robotparser when mueblesmoraleda.com is flaky and
5448
an overzealous DNS service (e.g. OpenDNS) redirects to a placeholder
5549
Web site.
5650

57-
- Avoid failing in test_urllibnet.test_bad_address when some overzealous
58-
DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test
59-
is now skipped instead.
60-
6151
- Issue #12440: When testing whether some bits in SSLContext.options can be
6252
reset, check the version of the OpenSSL headers Python was compiled against,
6353
rather than the runtime version of the OpenSSL library.
@@ -80,17 +70,24 @@ Tests
8070
What's New in Python 3.2.1?
8171
===========================
8272

83-
*Release date: XXXX-XX-XX*
84-
85-
Core and Builtins
86-
-----------------
73+
*Release date: 10-Jul-2011*
8774

8875
Library
8976
-------
9077

9178
- Issue #12467: warnings: fix a race condition if a warning is emitted at
9279
shutdown, if globals()['__file__'] is None.
9380

81+
Tests
82+
-----
83+
84+
- Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
85+
failure in name resolution.
86+
87+
- Avoid failing in test_urllibnet.test_bad_address when some overzealous
88+
DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test
89+
is now skipped instead.
90+
9491

9592
What's New in Python 3.2.1 release candidate 2?
9693
===============================================

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

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.1 release candidate 2
2-
================================================
1+
This is Python version 3.2.1
2+
============================
33

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

0 commit comments

Comments
 (0)