[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 9da33c82124f27eb58ba4cf145675fe7a1035744 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6': bpo-32207: Improve tk event exception tracebacks in IDLE. (GH-4703) (#4705) https://github.com/python/cpython/commit/9da33c82124f27eb58ba4cf145675

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +4617 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 1e2fcac4972530aa2c963d7e4011021df5ba866e by Terry Jan Reedy in branch 'master': bpo-32207: Improve tk event exception tracebacks in IDLE. (#4703) https://github.com/python/cpython/commit/1e2fcac4972530aa2c963d7e4011021df5ba866e --

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks. I am still puzzled why the nested within nested try-except did not work as I expected, but I care more about fixing this. The result based on your suggestion is better (to read, I think) than extra nesting that did work. -- stage: patch revie

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-04 Thread Terry J. Reedy
Change by Terry J. Reedy : -- keywords: +patch pull_requests: +4615 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyt

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: try: seq, request = rpc.request_queue.get(block=True, timeout=0.05) except queue.Empty: request = None if request is None: handle_tk_events() continue -- nosy: +se

[issue32207] IDLE: run's tk update adds context traceback on callback error

2017-12-03 Thread Terry J. Reedy
Change by Terry J. Reedy : -- title: IDLE: run's tk update adds extra traceback on callback error -> IDLE: run's tk update adds context traceback on callback error ___ Python tracker _