[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread Tal Einat
Change by Tal Einat : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread miss-islington
miss-islington added the comment: New changeset 6cf7c45cb5691b75d9a774c904df02a4f8bfcd04 by Miss Islington (bot) in branch '3.8': bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675) https://github.com/python/cpython/commit/6cf7c45cb5691b75d9a774c904df02a4f8bfcd04

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread miss-islington
miss-islington added the comment: New changeset bb79ab84c258566bcba89a87eb549fbc8643f882 by Miss Islington (bot) in branch '3.7': bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675) https://github.com/python/cpython/commit/bb79ab84c258566bcba89a87eb549fbc8643f882

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +14602 pull_request: https://github.com/python/cpython/pull/14808 ___ Python tracker ___

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +14601 pull_request: https://github.com/python/cpython/pull/14807 ___ Python tracker ___

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-17 Thread Tal Einat
Tal Einat added the comment: New changeset 7036e1de3a87d36c7ef41b8a2b44ed6fc4d34be2 by Tal Einat in branch 'master': bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675) https://github.com/python/cpython/commit/7036e1de3a87d36c7ef41b8a2b44ed6fc4d34be2 --

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 14030 for #17535 (line numbers) also has code for 1. I want to merge this first, and fix-up the other. Changing context font at the same time as the text font, instead of up to 1 second later, eliminates a visual glitch and is a user-visible improvement.

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-09 Thread Tal Einat
Change by Tal Einat : -- keywords: +patch pull_requests: +14482 pull_request: https://github.com/python/cpython/pull/14675 ___ Python tracker ___

[issue37530] IDLE: simplify, optimize, and clean up code context

2019-07-09 Thread Terry J. Reedy
New submission from Terry J. Reedy : Issue for Tal's PR 14675, dependency of #33610. 1. Only create CodeContext instances for "real" editors windows, but not e.g. shell or output windows. - Previously, were created but never activated because menu item deactivated. This is even better. 2.