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

Skip to content

Commit b5f91d7

Browse files
committed
Merge with 3.3.0 release clone.
2 parents a1f7655 + f248717 commit b5f91d7

7 files changed

Lines changed: 54 additions & 29 deletions

File tree

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ e15c554cd43eb23bc0a528a4e8741da9bbec9607 v3.3.0b1
107107
4972a8f1b2aa3d7cdd64dc96aa7fa112fe1ea343 v3.3.0b2
108108
8bb5c7bc46ba43804480f3e328e1fa956672c885 v3.3.0rc1
109109
88a0792e8ba3e4916b24c7e7a522c277d326d66e v3.3.0rc2
110+
c191d21cefafb3832c45570e84854e309aa62eaa v3.3.0rc3

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 3
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 2
23+
#define PY_RELEASE_SERIAL 3
2424

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

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

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.3.0rc2"
16+
__version__ = "3.3.0rc3"
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.3.0rc2"
1+
IDLE_VERSION = "3.3.0rc3"

Misc/NEWS

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

5-
What's New in Python 3.3.1
6-
==========================
5+
What's New in Python 3.3.1?
6+
===========================
77

88
*Release date: XX-XX-XXXX*
99

@@ -20,14 +20,6 @@ Core and Builtins
2020
- Issue #15965: Explicitly cast AT_FDCWD as (int). Required on Solaris 10
2121
(which defines AT_FDCWD as 0xffd19553), harmless on other platforms.
2222

23-
- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
24-
25-
- Issue #15895: Fix FILE pointer leak in one error branch of
26-
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
27-
is false an and set_main_loader() fails.
28-
29-
- Issue #15900: Fix reference leak in PyUnicode_TranslateCharmap().
30-
3123
- Issue #15839: Convert SystemErrors in super() to RuntimeErrors.
3224

3325
- Issue #15846: Fix SystemError which happened when using ast.parse in an
@@ -39,24 +31,16 @@ Core and Builtins
3931
Library
4032
-------
4133

42-
- Issue #15925: fixed regression in email.utils.parsedate and parsedate_tz
43-
handling of empty and non-date strings.
44-
45-
- Issue #15421: fix an OverflowError in Calendar.itermonthdates() after
34+
- Issue #15421: Fix an OverflowError in Calendar.itermonthdates() after
4635
datetime.MAXYEAR. Patch by Cédric Krier.
4736

4837
- Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML
4938
elements 'meta' and 'param'.
5039

51-
- Issue #15842: the SocketIO.{readable,writable,seekable} methods now
40+
- Issue #15842: The SocketIO.{readable,writable,seekable} methods now
5241
raise ValueError when the file-like object is closed. Patch by Alessandro
5342
Moura.
5443

55-
- Issue #15882: Change _decimal to accept any coefficient tuple when
56-
constructing infinities. This is done for backwards compatibility
57-
with decimal.py: Infinity coefficients are undefined in _decimal
58-
(in accordance with the specification).
59-
6044
- Issue #15876: Fix a refleak in the curses module: window.encoding.
6145

6246
- Issue #15881: Fixed atexit hook in multiprocessing. Original patch
@@ -87,9 +71,6 @@ Library
8771
Extension Modules
8872
-----------------
8973

90-
- Issue #15977: Fix memory leak in Modules/_ssl.c when the function
91-
_set_npn_protocols() is called multiple times, thanks to Daniel Sommermann.
92-
9374
Tests
9475
-----
9576

@@ -130,10 +111,53 @@ Core and Builtins
130111
Library
131112
-------
132113

114+
115+
What's New in Python 3.3.0 Release Candidate 3?
116+
===============================================
117+
118+
*Release date: 23-Sep-2012*
119+
120+
Core and Builtins
121+
-----------------
122+
123+
- Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap().
124+
125+
- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
126+
127+
- Issue #15895: Fix FILE pointer leak in one error branch of
128+
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
129+
is false an and set_main_loader() fails.
130+
131+
- Fixes for a few crash and memory leak regressions found by Coverity.
132+
133+
Library
134+
-------
135+
136+
- Issue #15882: Change _decimal to accept any coefficient tuple when
137+
constructing infinities. This is done for backwards compatibility
138+
with decimal.py: Infinity coefficients are undefined in _decimal
139+
(in accordance with the specification).
140+
141+
- Issue #15925: Fix a regression in email.util where the parsedate() and
142+
parsedate_tz() functions did not return None anymore when the argument could
143+
not be parsed.
144+
145+
Extension Modules
146+
-----------------
147+
148+
- Issue #15973: Fix a segmentation fault when comparing datetime timezone
149+
objects.
150+
151+
- Issue #15977: Fix memory leak in Modules/_ssl.c when the function
152+
_set_npn_protocols() is called multiple times, thanks to Daniel Sommermann.
153+
133154
- Issue #15969: faulthandler module: rename dump_tracebacks_later() to
134155
dump_traceback_later() and cancel_dump_tracebacks_later() to
135156
cancel_dump_traceback_later().
136157

158+
- _decimal module: use only C 89 style comments.
159+
160+
137161
What's New in Python 3.3.0 Release Candidate 2?
138162
===============================================
139163

Misc/RPM/python-3.3.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.3.0rc2
42+
%define version 3.3.0rc3
4343
%define libvers 3.3
4444
#--end constants--
4545
%define release 1pydotorg

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

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

0 commit comments

Comments
 (0)