summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/idlelib/browser.py2
-rw-r--r--Lib/idlelib/config_key.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/idlelib/browser.py b/Lib/idlelib/browser.py
index ea05638..73c251e 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 fc6e341..5556b76 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)