summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-26 00:13:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-26 00:13:12 (GMT)
commitc366117820eb34e14f4bf2b1f82a47b7a9cbc04a (patch)
treea9a703511caf473574a2d312c5143fa2c8486beb /Misc
parentf0effe637988e936b5a6ece2da789b67723d675c (diff)
parent0fdfceb782424dcddca848357736f24ef40c91be (diff)
downloadcpython-c366117820eb34e14f4bf2b1f82a47b7a9cbc04a.zip
cpython-c366117820eb34e14f4bf2b1f82a47b7a9cbc04a.tar.gz
cpython-c366117820eb34e14f4bf2b1f82a47b7a9cbc04a.tar.bz2
Merge heads
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS18
1 files changed, 17 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index da04ba5..c60cea0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,12 @@ Core and Builtins
on POSIX systems supporting anonymous memory mappings. Patch by
Charles-François Natali.
+- Issue #13452: PyUnicode_EncodeDecimal() doesn't support error handlers
+ different than "strict" anymore. The caller was unable to compute the
+ size of the output buffer: it depends on the error handler.
+
+- PEP 3155 / issue #13448: Qualified name for classes and functions.
+
- Issue #13436: Fix a bogus error message when an AST object was passed
an invalid integer value.
@@ -386,10 +392,20 @@ Core and Builtins
- Issue #12380: The rjust, ljust and center methods of bytes and bytearray
now accept a bytearray argument.
-
Library
-------
+- Issue #12567: The curses module uses Unicode functions for Unicode arguments
+ when it is linked to the ncurses library. It encodes also Unicode strings to
+ the locale encoding instead of UTF-8.
+
+- Issue #12856: Ensure child processes do not inherit the parent's random
+ seed for filename generation in the tempfile module. Patch by Brian
+ Harring.
+
+- Issue #9957: SpooledTemporaryFile.truncate() now accepts an optional size
+ parameter, as other file-like objects. Patch by Ryan Kelly.
+
- Issue #13458: Fix a memory leak in the ssl module when decoding a
certificate with a subjectAltName. Patch by Robert Xiao.