summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-07 20:25:46 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-07 20:25:46 (GMT)
commite45b7c09ece01c9b35a14b89eb64e1324ed321a8 (patch)
treed64a23ff36d35c76ad881b61ed08e644c0c82dbe /Misc/NEWS
parent242c170f878cc38eb32b26b55f69a9d7cef947a7 (diff)
parentde0574bdabc1183706406b421dea2e3e3c165eb3 (diff)
downloadcpython-e45b7c09ece01c9b35a14b89eb64e1324ed321a8.zip
cpython-e45b7c09ece01c9b35a14b89eb64e1324ed321a8.tar.gz
cpython-e45b7c09ece01c9b35a14b89eb64e1324ed321a8.tar.bz2
Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
Original patch by Niklas Koep.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 051c5f6..c258a67 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 2
Core and Builtins
-----------------
+- Issue #18287: PyType_Ready() now checks that tp_name is not NULL.
+ Original patch by Niklas Koep.
+
- Issue #24098: Fixed possible crash when AST is changed in process of
compiling it.