From: terryjreedy Date: Wed, 5 Jul 2017 04:55:29 +0000 (-0400) Subject: [3.6] bpo-21624: IDLE -- minor htest fixes (GH-2575) (#2578) X-Git-Tag: v3.6.3rc1~266 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1278d29000794085f1d9e25f2dadbf70b9076e30;p=python [3.6] bpo-21624: IDLE -- minor htest fixes (GH-2575) (#2578) (cherry picked from commit 2000150) --- diff --git a/Lib/idlelib/browser.py b/Lib/idlelib/browser.py index ea05638df1..73c251e76d 100644 --- a/Lib/idlelib/browser.py +++ b/Lib/idlelib/browser.py @@ -215,7 +215,7 @@ class MethodBrowserTreeItem(TreeItem): edit = file_open(self.file) edit.gotoline(self.cl.methods[self.name]) -def _class_browser(parent): #Wrapper for htest +def _class_browser(parent): # htest # try: file = __file__ except NameError: diff --git a/Lib/idlelib/config_key.py b/Lib/idlelib/config_key.py index fc6e341aca..5556b76796 100644 --- a/Lib/idlelib/config_key.py +++ b/Lib/idlelib/config_key.py @@ -293,5 +293,6 @@ class GetKeysDialog(Toplevel): if __name__ == '__main__': import unittest unittest.main('idlelib.idle_test.test_config_key', verbosity=2, exit=False) + from idlelib.idle_test.htest import run run(GetKeysDialog)