]> granicus.if.org Git - python/commit
bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 17 Jul 2019 08:44:55 +0000 (01:44 -0700)
committerGitHub <noreply@github.com>
Wed, 17 Jul 2019 08:44:55 +0000 (01:44 -0700)
commit6cf7c45cb5691b75d9a774c904df02a4f8bfcd04
tree5dab274be23a99ab40deae65a997f31df8ed40e5
parent35d36dacd410af96d794277c5ae6986d95d50e5a
bpo-37530: simplify, optimize and clean up IDLE code context (GH-14675)

* Only create CodeContext instances for "real" editors windows, but
  not e.g. shell or output windows.
* Remove configuration update Tk event fired every second, by having
  the editor window ask its code context widget to update when
  necessary, i.e. upon font or highlighting updates.
* When code context isn't being shown, avoid having a Tk event fired
  every 100ms to check whether the code context needs to be updated.
* Use the editor window's getlineno() method where applicable.
* Update font of the code context widget before the main text widget
(cherry picked from commit 7036e1de3a87d36c7ef41b8a2b44ed6fc4d34be2)

Co-authored-by: Tal Einat <taleinat@gmail.com>
Lib/idlelib/codecontext.py
Lib/idlelib/editor.py
Lib/idlelib/idle_test/test_codecontext.py
Lib/idlelib/outwin.py
Misc/NEWS.d/next/IDLE/2019-07-11-00-05-31.bpo-37530.AuyCyD.rst [new file with mode: 0644]