diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-07-05 02:41:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 02:41:12 (GMT) |
commit | 2000150c569941584994ec4ec59171961209bec3 (patch) | |
tree | 2f76be33463c5def5cf7f34f4206438fe1f49f53 /Lib/idlelib | |
parent | 7eb5883ac59833bf63f0e1f7fb95671a1ac1ee08 (diff) | |
download | cpython-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.py | 2 | ||||
-rw-r--r-- | Lib/idlelib/config_key.py | 1 |
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) |