summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-07 18:55:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-07 18:55:49 (GMT)
commit5e80855af3537f9715b33539d5b9860ca533a288 (patch)
treeb6edf52a3ef9345a3ce4d44e38cf4d585f7ef9c2 /Misc
parent3df053e556c27dd8ed8fd20e1f1d652284132ff1 (diff)
parentcf3806026b4f9784f97fce168695c3b4a6bbd8a5 (diff)
downloadcpython-5e80855af3537f9715b33539d5b9860ca533a288.zip
cpython-5e80855af3537f9715b33539d5b9860ca533a288.tar.gz
cpython-5e80855af3537f9715b33539d5b9860ca533a288.tar.bz2
Issue #24098: Fixed possible crash when AST is changed in process of
compiling it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b03cc81..2edec5e 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 #24098: Fixed possible crash when AST is changed in process of
+ compiling it.
+
- Issue #28201: Dict reduces possibility of 2nd conflict in hash table when
hashes have same lower bits.