diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-05-25 22:44:05 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-05-25 22:44:05 (GMT) |
commit | a2fc99eceae7b3dacc1e7280cc01c3b877ce55ab (patch) | |
tree | c6593cf545a51196117abd00623081007bf2ce67 /Lib/idlelib/ClassBrowser.py | |
parent | e1d54e5f8e63cf8a464a1c4c3d42e4f3a107b83f (diff) | |
download | cpython-a2fc99eceae7b3dacc1e7280cc01c3b877ce55ab.zip cpython-a2fc99eceae7b3dacc1e7280cc01c3b877ce55ab.tar.gz cpython-a2fc99eceae7b3dacc1e7280cc01c3b877ce55ab.tar.bz2 |
Issue #21477: Idle htest: modify run; add more tests.
Patch by Saimadhav Heblikar. 2.7 version will follow.
Diffstat (limited to 'Lib/idlelib/ClassBrowser.py')
-rw-r--r-- | Lib/idlelib/ClassBrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/ClassBrowser.py b/Lib/idlelib/ClassBrowser.py index a6e6c4a..ee1a70f 100644 --- a/Lib/idlelib/ClassBrowser.py +++ b/Lib/idlelib/ClassBrowser.py @@ -13,7 +13,6 @@ XXX TO DO: import os import sys import pyclbr -import re from idlelib import PyShell from idlelib.WindowList import ListedToplevel @@ -223,6 +222,7 @@ def _class_browser(parent): #Wrapper for htest name = os.path.splitext(file)[0] flist = PyShell.PyShellFileList(parent) ClassBrowser(flist, name, [dir], _htest=True) + parent.mainloop() if __name__ == "__main__": from idlelib.idle_test.htest import run |