diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2023-12-04 01:36:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 06:36:40 +0000 |
commit | e5b0db0315941b968ebcc2414bfcdd2da44fd3c2 (patch) | |
tree | b5057747f6a695b5e1033ccce765e63d5ab5a077 /Lib/idlelib/iomenu.py | |
parent | 5a1b5316af648ae79bb91f28253b6272bbbd2886 (diff) | |
download | cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.tar.gz cpython-e5b0db0315941b968ebcc2414bfcdd2da44fd3c2.zip |
gh-66819: More IDLE htest updates(4) (#112686)
Mostly double spacing before 'if __name__...'.
Diffstat (limited to 'Lib/idlelib/iomenu.py')
-rw-r--r-- | Lib/idlelib/iomenu.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py index 7629101635b..667623ec71a 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -393,6 +393,7 @@ class IOBinding: if self.editwin.flist: self.editwin.update_recent_files_list(filename) + def _io_binding(parent): # htest # from tkinter import Toplevel, Text @@ -430,6 +431,7 @@ def _io_binding(parent): # htest # editwin = MyEditWin(text) IOBinding(editwin) + if __name__ == "__main__": from unittest import main main('idlelib.idle_test.test_iomenu', verbosity=2, exit=False) |