summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-09-05 19:23:00 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-09-05 19:23:00 (GMT)
commit699534210c935de3d5041c801bd97270fd31a522 (patch)
tree8496cebcbaec6a44eafbf08206dc2aab71b17111 /Misc
parent373602fa3f3e54ca4f7e7a87948b6df86a17a3e6 (diff)
downloadcpython-699534210c935de3d5041c801bd97270fd31a522.zip
cpython-699534210c935de3d5041c801bd97270fd31a522.tar.gz
cpython-699534210c935de3d5041c801bd97270fd31a522.tar.bz2
Issue #24917: Moves NEWS entry under Library.
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 b8698eb..11d7de4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,8 +10,6 @@ Release date: 2015-09-06
Core and Builtins
-----------------
-- Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
-
- Issue #24912: Prevent __class__ assignment to immutable built-in objects.
- Issue #24975: Fix AST compilation for PEP 448 syntax.
@@ -19,6 +17,8 @@ Core and Builtins
Library
-------
+- Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch.
+
- Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable)
would return True once, then False on subsequent calls.