diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-12-05 18:44:09 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2017-12-05 18:44:09 (GMT) |
commit | 7a6f28f2802db3da79b3c2bd5d75e40eb0709744 (patch) | |
tree | 033fbe6d840c306f000fb41d844bf29f05285e7c | |
parent | 3b5541670036cc57205fb91f1fc332a952898962 (diff) | |
download | cpython-7a6f28f2802db3da79b3c2bd5d75e40eb0709744.zip cpython-7a6f28f2802db3da79b3c2bd5d75e40eb0709744.tar.gz cpython-7a6f28f2802db3da79b3c2bd5d75e40eb0709744.tar.bz2 |
bpo-30928: update idlelib/NEWS.txt. (GH-4706) (#4707)
(cherry picked from commit 2c0c68d927bfa557f98bac26644f5b64c4b135a7)
-rw-r--r-- | Lib/idlelib/NEWS.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 6e1f0cc..56d37f3 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,13 @@ Released on 2017-09-25? ======================== +bpo-32207: Improve tk event exception tracebacks in IDLE. +When tk event handling is driven by IDLE's run loop, a confusing +and distracting queue.EMPTY traceback context is no longer added +to tk event exception tracebacks. The traceback is now the same +as when event handling is driven by user code. Patch based on +a suggestion by Serhiy Storchaka. + bpo-32164: Delete unused file idlelib/tabbedpages.py. Use of TabbedPageSet in configdialog was replaced by ttk.Notebook. |