[Python-checkins] cpython: Backed out changeset 42e2e67b8e6f

serhiy.storchaka python-checkins at python.org
Sun Aug 9 12:45:52 CEST 2015


https://hg.python.org/cpython/rev/a16c6456f34b
changeset:   97345:a16c6456f34b
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Aug 09 13:44:04 2015 +0300
summary:
  Backed out changeset 42e2e67b8e6f

files:
  Misc/NEWS |  97 +++++++++++++++---------------------------
  1 files changed, 35 insertions(+), 62 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,15 +10,50 @@
 Core and Builtins
 -----------------
 
+- Issue #24667: Resize odict in all cases that the underlying dict resizes.
+
 Library
 -------
 
+- Issue #24824: Signatures of codecs.encode() and codecs.decode() now are
+  compatible with pydoc.
+
+- Issue #4395: Better testing and documentation of binary operators.
+  Patch by Martin Panter.
+
+- Issue #23973: Update typing.py from GitHub repo.
+
+- Issue #23004: mock_open() now reads binary data correctly when the type of
+  read_data is bytes.  Initial patch by Aaron Hill.
+
+- Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
+
+- Issue #23652: Make it possible to compile the select module against the
+  libc headers from the Linux Standard Base, which do not include some
+  EPOLL macros.  Patch by Matt Frank.
+
+- Issue #22932: Fix timezones in email.utils.formatdate.
+  Patch from Dmitry Shachnev.
+
+- Issue #23779: imaplib raises TypeError if authenticator tries to abort.
+  Patch from Craig Holmquist.
+
 - Issue #24360: Improve __repr__ of argparse.Namespace() for invalid
   identifiers.  Patch by Matthias Bussonnier.
 
+- Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch
+  written by Matthieu Gautier.
+
+- Issue #19450: Update Windows and OS X installer builds to use SQLite 3.8.11.
+
+- Issue #23254: Document how to close the TCPServer listening socket.
+  Patch from Martin Panter.
+
 - Issue #23426: run_setup was broken in distutils.
   Patch from Alexander Belopolsky.
 
+- Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
+
 - Issue #13938: 2to3 converts StringTypes to a tuple. Patch from Mark Hammond.
 
 - Issue #2091: open() accepted a 'U' mode string containing '+', but 'U' can
@@ -42,68 +77,6 @@
 Documentation
 -------------
 
-Tests
------
-
-
-What's New in Python 3.5.0 release candidate 1?
-===============================================
-
-Release date: 2015-08-09
-
-Core and Builtins
------------------
-
-- Issue #24667: Resize odict in all cases that the underlying dict resizes.
-
-Library
--------
-
-- Issue #24824: Signatures of codecs.encode() and codecs.decode() now are
-  compatible with pydoc.
-
-- Issue #24634: Importing uuid should not try to load libc on Windows
-
-- Issue #24798: _msvccompiler.py doesn't properly support manifests
-
-- Issue #4395: Better testing and documentation of binary operators.
-  Patch by Martin Panter.
-
-- Issue #23973: Update typing.py from GitHub repo.
-
-- Issue #23004: mock_open() now reads binary data correctly when the type of
-  read_data is bytes.  Initial patch by Aaron Hill.
-
-- Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
-
-- Issue #23652: Make it possible to compile the select module against the
-  libc headers from the Linux Standard Base, which do not include some
-  EPOLL macros.  Patch by Matt Frank.
-
-- Issue #22932: Fix timezones in email.utils.formatdate.
-  Patch from Dmitry Shachnev.
-
-- Issue #23779: imaplib raises TypeError if authenticator tries to abort.
-  Patch from Craig Holmquist.
-
-- Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch
-  written by Matthieu Gautier.
-
-- Issue #23254: Document how to close the TCPServer listening socket.
-  Patch from Martin Panter.
-
-- Issue #19450: Update Windows and OS X installer builds to use SQLite 3.8.11.
-
-- Issue #17527: Add PATCH to wsgiref.validator. Patch from Luca Sbardella.
-
-- Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation.
-  Patch by Gustavo J. A. M. Carneiro.
-
-- Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.
-
-Documentation
--------------
-
 - Issue #24129: Clarify the reference documentation for name resolution.
   This includes removing the assumption that readers will be familiar with the
   name resolution scheme Python used prior to the introduction of lexical

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list