summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/IDLE
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-17 06:23:12 (GMT)
committerGitHub <noreply@github.com>2019-09-17 06:23:12 (GMT)
commit73ccc3322f7ad0d016478ef20237bccd0a314f0a (patch)
tree1a8df5b3bd8d22ecd3f3638e34f0ac45725ea0d3 /Misc/NEWS.d/next/IDLE
parentf04299d978793be33828dc4d5f46e9b54c81a0a2 (diff)
downloadcpython-73ccc3322f7ad0d016478ef20237bccd0a314f0a.zip
cpython-73ccc3322f7ad0d016478ef20237bccd0a314f0a.tar.gz
cpython-73ccc3322f7ad0d016478ef20237bccd0a314f0a.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. (cherry picked from commit dfd34a9cd58e8150c324190f746de919e140abe8) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Misc/NEWS.d/next/IDLE')
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-09-17-01-28-56.bpo-35379.yAECDr.rst3
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.