diff options
author | Christian Heimes <christian@cheimes.de> | 2012-09-20 10:43:24 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2012-09-20 10:43:24 (GMT) |
commit | 1c47222a256f2977dcbb36c05dce7a5ae8e6ae06 (patch) | |
tree | aadc18979dd5ef6c6aae06f00100105b0d0ed460 /Misc | |
parent | 5cb31c9277500745b443dacf183fd16c7704577b (diff) | |
parent | fe6e7e6b30464d7c742bddbe5e96d6ca886ae123 (diff) | |
download | cpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.zip cpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.gz cpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.bz2 |
merge
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.1 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 @@ -29,6 +32,9 @@ Core and Builtins Library ------- +- Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML + elements 'meta' and 'param'. + - Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. Patch by Alessandro Moura. |