summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-10-14 21:37:02 (GMT)
committerBrett Cannon <brett@python.org>2014-10-14 21:37:02 (GMT)
commitb0fc490307d2603d61cc1a20ef8988a3b20d5b1f (patch)
tree386afe7f0e41a415517c76ecae7daf2e71b5b73a /Misc
parentc7dc55eb157df2f9d233735920b08066ab9f3329 (diff)
downloadcpython-b0fc490307d2603d61cc1a20ef8988a3b20d5b1f.zip
cpython-b0fc490307d2603d61cc1a20ef8988a3b20d5b1f.tar.gz
cpython-b0fc490307d2603d61cc1a20ef8988a3b20d5b1f.tar.bz2
Issue #20152: Convert the cmath module to Argument Clinic.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 224b68e..e7f47f1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,8 +16,6 @@ Core and Builtins
- Issue #22604: Fix assertion error in debug mode when dividing a complex
number by (nan+0j).
-- Issue #20152: Convert the array module to Argument Clinic.
-
- Issue #21052: Do not raise ImportWarning when sys.path_hooks or sys.meta_path
are set to None.
@@ -177,6 +175,8 @@ Core and Builtins
Library
-------
+- Issue #20152: Convert the array and cmath modules to Argument Clinic.
+
- Issue #18643: Add socket.socketpair() on Windows.
- Issue #22435: Fix a file descriptor leak when SocketServer bind fails.