22Python 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
3931Library
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
8771Extension 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-
9374Tests
9475-----
9576
@@ -130,10 +111,53 @@ Core and Builtins
130111Library
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+
137161What's New in Python 3.3.0 Release Candidate 2?
138162===============================================
139163
0 commit comments