[issue31493] IDLE cond context: fix code update and font update timers

2018-05-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: The patch fixed immediate problem #2 above. #1 is a separate enhancement and I listed it as #4 on the new master issue #33610. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: The underlying issue is trying to coordinate two somewhat independent object systems (Python and Tcl). I don't know why the after loops were (apparently) stopped before #27099 and not after. The only difference I know of is the dropping of the reference to

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-20 Thread Cheryl Sabella
Cheryl Sabella added the comment: Sorry, I didn't see this until now. I added a line to editor.py in #31529 for this error message. In _close() in editor.py, self.text was being set to None which wasn't calling the __del__ function of multicall. I added a line to unbind "<>", which made

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset b417332bf44af93c8acda4b7197181d4b62c16a4 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6': [3.6] bpo-31493: Fix code context update and font update timers. (GH-3622) (#3623)

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-16 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +3613 ___ Python tracker ___

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset a6bb313c70f8619e6dc4af5cef7d73fa3bbd59ca by Terry Jan Reedy in branch 'master': bpo-31493: Fix code context update and font update timers. (#3622) https://github.com/python/cpython/commit/a6bb313c70f8619e6dc4af5cef7d73fa3bbd59ca --

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-16 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- keywords: +patch pull_requests: +3612 stage: needs patch -> patch review ___ Python tracker ___

[issue31493] IDLE cond context: fix code update and font update timers

2017-09-16 Thread Terry J. Reedy
New submission from Terry J. Reedy: 1. Currently, each instance of codecontext.CodeContext creates 2 root.after loops. There should be at most two loops for the class, and preferably fewer by using the new reload(). 2. The loops are never explicitly shut down. Since conversion to a feature,