bpo-1612262: IDLE: Class Browser shows nested functions, classes (#2573)

Original patches for code and tests by Guilherme Polo and
Cheryl Sabella, respectively.
This commit is contained in:
Cheryl Sabella 2017-09-22 16:08:44 -04:00 committed by Terry Jan Reedy
parent 0a1ff24acf
commit 058de11360
4 changed files with 328 additions and 156 deletions

View file

@ -9,11 +9,12 @@ from idlelib.tree import TreeItem
class PathBrowser(ClassBrowser):
def __init__(self, flist, _htest=False):
def __init__(self, flist, _htest=False, _utest=False):
"""
_htest - bool, change box location when running htest
"""
self._htest = _htest
self._utest = _utest
self.init(flist)
def settitle(self):