summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:38:08 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 07:38:08 (GMT)
commit1c09c0ea1107a8fbb22c949235a0950b9a98e252 (patch)
treedd06f802f88782a0b7295fcb03e978b316d6c586 /Misc
parent08578b0d3b8a4f629878267085d3856a0742853c (diff)
downloadcpython-1c09c0ea1107a8fbb22c949235a0950b9a98e252.zip
cpython-1c09c0ea1107a8fbb22c949235a0950b9a98e252.tar.gz
cpython-1c09c0ea1107a8fbb22c949235a0950b9a98e252.tar.bz2
Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.
ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails.
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 6e7ed3a..9e5e681 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,6 +22,9 @@ Core and Builtins
Library
-------
+- Issue #21951: Tkinter now most likely raises MemoryError instead of crash
+ if the memory allocation fails.
+
- Issue #22226: First letter no longer is stripped from the "status" key in
the result of Treeview.heading().