diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-07 20:25:46 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-07 20:25:46 (GMT) |
commit | e45b7c09ece01c9b35a14b89eb64e1324ed321a8 (patch) | |
tree | d64a23ff36d35c76ad881b61ed08e644c0c82dbe /Misc/NEWS | |
parent | 242c170f878cc38eb32b26b55f69a9d7cef947a7 (diff) | |
parent | de0574bdabc1183706406b421dea2e3e3c165eb3 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |