diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 07:38:08 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 07:38:08 (GMT) |
commit | 1c09c0ea1107a8fbb22c949235a0950b9a98e252 (patch) | |
tree | dd06f802f88782a0b7295fcb03e978b316d6c586 /Misc | |
parent | 08578b0d3b8a4f629878267085d3856a0742853c (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |