diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-12-04 06:36:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 06:36:40 (GMT) |
commit | e5b0db0315941b968ebcc2414bfcdd2da44fd3c2 (patch) | |
tree | b5057747f6a695b5e1033ccce765e63d5ab5a077 /Lib/idlelib/editor.py | |
parent | 5a1b5316af648ae79bb91f28253b6272bbbd2886 (diff) | |
download | cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.zip cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.tar.gz cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.tar.bz2 |
gh-66819: More IDLE htest updates(4) (#112686)
Mostly double spacing before 'if __name__...'.
Diffstat (limited to 'Lib/idlelib/editor.py')
-rw-r--r-- | Lib/idlelib/editor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/editor.py b/Lib/idlelib/editor.py index 69b27d0..6ad383f 100644 --- a/Lib/idlelib/editor.py +++ b/Lib/idlelib/editor.py @@ -1748,6 +1748,7 @@ def _editor_window(parent): # htest # # Does not stop error, neither does following # edit.text.bind("<<close-window>>", edit.close_event) + if __name__ == '__main__': from unittest import main main('idlelib.idle_test.test_editor', verbosity=2, exit=False) |