diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-09-17 06:05:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 06:05:04 (GMT) |
commit | dfd34a9cd58e8150c324190f746de919e140abe8 (patch) | |
tree | 8bea5573aa4f327c8d55fd4e0410756f6fefe880 /Misc | |
parent | 63dedef48bba9d54f13b958237696505fa665796 (diff) | |
download | cpython-dfd34a9cd58e8150c324190f746de919e140abe8.zip cpython-dfd34a9cd58e8150c324190f746de919e140abe8.tar.gz cpython-dfd34a9cd58e8150c324190f746de919e140abe8.tar.bz2 |
bpo-35379: When exiting IDLE, catch any AttributeError. (GH-16212)
One happens when EditorWindow.close is called twice.
Printing a traceback, when IDLE is run from a terminal,
is useless and annoying.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-09-17-01-28-56.bpo-35379.yAECDr.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-09-17-01-28-56.bpo-35379.yAECDr.rst b/Misc/NEWS.d/next/IDLE/2019-09-17-01-28-56.bpo-35379.yAECDr.rst new file mode 100644 index 0000000..98d4167 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-09-17-01-28-56.bpo-35379.yAECDr.rst @@ -0,0 +1,3 @@ +When exiting IDLE, catch any AttributeError. One happens when +EditorWindow.close is called twice. Printing a traceback, when IDLE is run +from a terminal, is useless and annoying. |