]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
merge 2.7.10 release branch
authorBenjamin Peterson <benjamin@python.org>
Sat, 23 May 2015 15:47:39 +0000 (10:47 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 23 May 2015 15:47:39 +0000 (10:47 -0500)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index c311f6b25d997ad67231f596933c40f8c64fd998,65943de69414e9c082d6567c129d3247c70c3f2d..a46a5297a11f8254c0baa8cbf62a9cb8f92b54d3
+++ b/Misc/NEWS
@@@ -2,17 -2,60 +2,70 @@@
  Python News
  +++++++++++
  
+ What's New in Python 2.7.11?
+ ============================
+ *Release date: XXXX-XX-XX*
+ Core and Builtins
+ -----------------
+ - Issue #22939: Fixed integer overflow in iterator object.  Original patch by
+   Clement Rouault.
+ - Issue #24102: Fixed exception type checking in standard error handlers.
+ Library
+ -------
+ - Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked
+   cursor type.
+ - Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again
+   when a directory with the chosen name already exists on Windows as well as
+   on Unix.  tempfile.mkstemp() now fails early if parent directory is not
+   valid (not exists or is a file) on Windows.
+ - Issue #6598: Increased time precision and random number range in
+   email.utils.make_msgid() to strengthen the uniqueness of the message ID.
+ - Issue #24091: Fixed various crashes in corner cases in cElementTree.
+ - Issue #15267: HTTPConnection.request() now is compatibile with old-style
+   classes (such as TemporaryFile).  Original patch by Atsuo Ishimoto.
+ - Issue #20014: array.array() now accepts unicode typecodes.  Based on patch by
+   Vajrasky Kok.
+ - Issue #23637: Showing a warning no longer fails with UnicodeErrror.
+   Formatting unicode warning in the file with the path containing non-ascii
+   characters no longer fails with UnicodeErrror.
+ - Issue #24134: Reverted issue #24134 changes.
+ IDLE
+ ----
+ - Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for
+   decoding unicode literals.
+   
+ Documentation
+ -------------
+ - Issue #22155: Add File Handlers subsection with createfilehandler to Tkinter
+   doc.  Remove obsolete example from FAQ.  Patch by Martin Panter.
 +What's New in Python 2.7.10?
 +============================
 +
 +*Release date: 2015-05-23*
 +
 +Library
 +-------
 +
 +- Issue #22931: Allow '[' and ']' in cookie values.
 +
  What's New in Python 2.7.10 release candidate 1?
  ================================================