summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-05 22:24:19 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-05 22:24:19 (GMT)
commit6bc7fa28dd6434df52a7beddcde33de7583dc4f0 (patch)
tree6d16c5b0672c8d33d2372baed870bab3adcf34ec
parentfb3134f4d489556ff3cb8fcf7e9948bdab2e49d8 (diff)
downloadcpython-6bc7fa28dd6434df52a7beddcde33de7583dc4f0.zip
cpython-6bc7fa28dd6434df52a7beddcde33de7583dc4f0.tar.gz
cpython-6bc7fa28dd6434df52a7beddcde33de7583dc4f0.tar.bz2
Fixed merge error in Misc/NEWS for issue #23722.
-rw-r--r--Misc/NEWS13
1 files changed, 5 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d1f9952..e142a43 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,14 +35,6 @@ Core and Builtins
non-encodable characters (non-ASCII for the ASCII codec, characters out
of the U+0000-U+00FF range for Latin1).
-Documentation
--------------
-
-- Issue #23722: The data model reference and the porting section in the
- 3.6 What's New guide now cover the additional ``__classcell__`` handling
- needed for custom metaclasses to fully support PEP 487 and zero-argument
- ``super()``.
-
- Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict.
Improve speed of dict literal with constant keys up to 30%.
@@ -499,6 +491,11 @@ C API
Documentation
-------------
+- Issue #23722: The data model reference and the porting section in the
+ 3.6 What's New guide now cover the additional ``__classcell__`` handling
+ needed for custom metaclasses to fully support PEP 487 and zero-argument
+ ``super()``.
+
- Issue #28513: Documented command-line interface of zipfile.
Build