diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 07:38:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-09-11 07:38:54 (GMT) |
commit | 07940883796e71135723616f06a1405105c09571 (patch) | |
tree | 3b4f2307324c6b254fdee133bd9c566cd88aa2ea /Misc | |
parent | 31a3ec313d442fd9d64a3882669da634d7b70d56 (diff) | |
download | cpython-07940883796e71135723616f06a1405105c09571.zip cpython-07940883796e71135723616f06a1405105c09571.tar.gz cpython-07940883796e71135723616f06a1405105c09571.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
@@ -32,6 +32,9 @@ Core and Builtins Library ------- +- Issue #21951: Tkinter now most likely raises MemoryError instead of crash + if the memory allocation fails. + - Issue #22338: Fix a crash in the json module on memory allocation failure. - Issue #22226: First letter no longer is stripped from the "status" key in |