diff options
author | Georg Brandl <georg@python.org> | 2012-09-24 05:46:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-09-24 05:46:35 (GMT) |
commit | b5f91d7eb79a9d29f88a5fabf7e9a70b41820107 (patch) | |
tree | b4edccb952e55877fff4ebad74e6fa140345f7b7 /Misc | |
parent | a1f7655fa7e09ec33a240e4e2f589bca2eac76e0 (diff) | |
parent | f2487177eba8c8e88ab3c11344720f4df6000d72 (diff) | |
download | cpython-b5f91d7eb79a9d29f88a5fabf7e9a70b41820107.zip cpython-b5f91d7eb79a9d29f88a5fabf7e9a70b41820107.tar.gz cpython-b5f91d7eb79a9d29f88a5fabf7e9a70b41820107.tar.bz2 |
Merge with 3.3.0 release clone.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 70 | ||||
-rw-r--r-- | Misc/RPM/python-3.3.spec | 2 |
2 files changed, 48 insertions, 24 deletions
@@ -2,8 +2,8 @@ Python News +++++++++++ -What's New in Python 3.3.1 -========================== +What's New in Python 3.3.1? +=========================== *Release date: XX-XX-XXXX* @@ -20,14 +20,6 @@ Core and Builtins - Issue #15965: Explicitly cast AT_FDCWD as (int). Required on Solaris 10 (which defines AT_FDCWD as 0xffd19553), harmless on other platforms. -- Issue #15926: Fix crash after multiple reinitializations of the interpreter. - -- Issue #15895: Fix FILE pointer leak in one error branch of - PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit - is false an and set_main_loader() fails. - -- Issue #15900: Fix reference leak in PyUnicode_TranslateCharmap(). - - Issue #15839: Convert SystemErrors in super() to RuntimeErrors. - Issue #15846: Fix SystemError which happened when using ast.parse in an @@ -39,24 +31,16 @@ Core and Builtins Library ------- -- Issue #15925: fixed regression in email.utils.parsedate and parsedate_tz - handling of empty and non-date strings. - -- Issue #15421: fix an OverflowError in Calendar.itermonthdates() after +- Issue #15421: Fix an OverflowError in Calendar.itermonthdates() after datetime.MAXYEAR. Patch by Cédric Krier. - Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements 'meta' and 'param'. -- Issue #15842: the SocketIO.{readable,writable,seekable} methods now +- Issue #15842: The SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. Patch by Alessandro Moura. -- Issue #15882: Change _decimal to accept any coefficient tuple when - constructing infinities. This is done for backwards compatibility - with decimal.py: Infinity coefficients are undefined in _decimal - (in accordance with the specification). - - Issue #15876: Fix a refleak in the curses module: window.encoding. - Issue #15881: Fixed atexit hook in multiprocessing. Original patch @@ -87,9 +71,6 @@ Library Extension Modules ----------------- -- Issue #15977: Fix memory leak in Modules/_ssl.c when the function - _set_npn_protocols() is called multiple times, thanks to Daniel Sommermann. - Tests ----- @@ -130,10 +111,53 @@ Core and Builtins Library ------- + +What's New in Python 3.3.0 Release Candidate 3? +=============================================== + +*Release date: 23-Sep-2012* + +Core and Builtins +----------------- + +- Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap(). + +- Issue #15926: Fix crash after multiple reinitializations of the interpreter. + +- Issue #15895: Fix FILE pointer leak in one error branch of + PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit + is false an and set_main_loader() fails. + +- Fixes for a few crash and memory leak regressions found by Coverity. + +Library +------- + +- Issue #15882: Change _decimal to accept any coefficient tuple when + constructing infinities. This is done for backwards compatibility + with decimal.py: Infinity coefficients are undefined in _decimal + (in accordance with the specification). + +- Issue #15925: Fix a regression in email.util where the parsedate() and + parsedate_tz() functions did not return None anymore when the argument could + not be parsed. + +Extension Modules +----------------- + +- Issue #15973: Fix a segmentation fault when comparing datetime timezone + objects. + +- Issue #15977: Fix memory leak in Modules/_ssl.c when the function + _set_npn_protocols() is called multiple times, thanks to Daniel Sommermann. + - Issue #15969: faulthandler module: rename dump_tracebacks_later() to dump_traceback_later() and cancel_dump_tracebacks_later() to cancel_dump_traceback_later(). +- _decimal module: use only C 89 style comments. + + What's New in Python 3.3.0 Release Candidate 2? =============================================== diff --git a/Misc/RPM/python-3.3.spec b/Misc/RPM/python-3.3.spec index ab21f96..ce21695 100644 --- a/Misc/RPM/python-3.3.spec +++ b/Misc/RPM/python-3.3.spec @@ -39,7 +39,7 @@ %define name python #--start constants-- -%define version 3.3.0rc2 +%define version 3.3.0rc3 %define libvers 3.3 #--end constants-- %define release 1pydotorg |