summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-29 10:05:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-29 10:05:46 (GMT)
commita97c57c8fdb5d91771635633f081f5150eb101c5 (patch)
treec19b2117f0cba75502c54e6884041e0a80b22b90
parentc9c4338e2b1039f51d1cdaaf92ae5677459133d5 (diff)
downloadcpython-a97c57c8fdb5d91771635633f081f5150eb101c5.zip
cpython-a97c57c8fdb5d91771635633f081f5150eb101c5.tar.gz
cpython-a97c57c8fdb5d91771635633f081f5150eb101c5.tar.bz2
Move NEWS entity from library to core section.
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 36edcba..1282647 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.
+
- Issue #13886: Fix input() to not strip out input bytes that cannot be decoded
using the locale encoding. Also fix sporadic failures in test_builtin due to
dependence on whether the readline module has previously been imported.
@@ -214,8 +216,6 @@ Core and Builtins
Library
-------
-- Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.
-
- Issue #9290: In IDLE the sys.std* streams now implement io.TextIOBase
interface and support all mandatory methods and properties.