summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-05-28 15:34:16 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2013-05-28 15:34:16 +0300
commit80f3bf95f110a105e32519310041dcf55cabc36c (patch)
tree7f46e0963d8a10f26cb4afa79321aa61e9e5ace4
parent77a3ad743f604c11c23ec6c0100360675b5676f8 (diff)
downloadcpython-git-80f3bf95f110a105e32519310041dcf55cabc36c.tar.gz
Move some Misc/NEWS entries to correct place.
-rw-r--r--Misc/NEWS14
1 files changed, 7 insertions, 7 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 04e9d15470..a90466e822 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,13 +10,6 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
-- Issue #17206: Py_CLEAR(), Py_DECREF(), Py_XINCREF() and Py_XDECREF() now
- expand their arguments once instead of multiple times. Patch written by Illia
- Polosukhin.
-- Issue #15392: Create a unittest framework for IDLE.
- Rajagopalasarma Jayakrishnan
-
-
- Issue #17937: Try harder to collect cyclic garbage at shutdown.
- Issue #12370: Prevent class bodies from interfering with the __class__
@@ -309,6 +302,9 @@ Library
Tests
-----
+- Issue #15392: Create a unittest framework for IDLE.
+ Rajagopalasarma Jayakrishnan
+
- Issue #17992: Add timeouts to asyncore and asynchat tests so that they won't
accidentally hang.
@@ -373,6 +369,10 @@ Tests
C-API
-----
+- Issue #17206: Py_CLEAR(), Py_DECREF(), Py_XINCREF() and Py_XDECREF() now
+ expand their arguments once instead of multiple times. Patch written by Illia
+ Polosukhin.
+
- Issue #17522: Add the PyGILState_Check() API.
- Issue #17327: Add PyDict_SetDefault.