summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2012-09-20 10:43:24 (GMT)
committerChristian Heimes <christian@cheimes.de>2012-09-20 10:43:24 (GMT)
commit1c47222a256f2977dcbb36c05dce7a5ae8e6ae06 (patch)
treeaadc18979dd5ef6c6aae06f00100105b0d0ed460 /Misc
parent5cb31c9277500745b443dacf183fd16c7704577b (diff)
parentfe6e7e6b30464d7c742bddbe5e96d6ca886ae123 (diff)
downloadcpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.zip
cpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.gz
cpython-1c47222a256f2977dcbb36c05dce7a5ae8e6ae06.tar.bz2
merge
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 63434ba..da84c3a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.