summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorterryjreedy <tjreedy@udel.edu>2017-07-05 02:41:12 (GMT)
committerGitHub <noreply@github.com>2017-07-05 02:41:12 (GMT)
commit2000150c569941584994ec4ec59171961209bec3 (patch)
tree2f76be33463c5def5cf7f34f4206438fe1f49f53 /Lib/idlelib
parent7eb5883ac59833bf63f0e1f7fb95671a1ac1ee08 (diff)
downloadcpython-2000150c569941584994ec4ec59171961209bec3.zip
cpython-2000150c569941584994ec4ec59171961209bec3.tar.gz
cpython-2000150c569941584994ec4ec59171961209bec3.tar.bz2
bpo-21624: IDLE -- minor htest fixes (#2575)
Diffstat (limited to 'Lib/idlelib')
-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)