/external/python/cpython3/Lib/idlelib/ |
D | textview.py | 91 *, _htest=False, _utest=False): argument 122 if not _utest: 132 def view_text(parent, title, text, modal=True, wrap='word', _utest=False): argument 143 return ViewWindow(parent, title, text, modal, wrap=wrap, _utest=_utest) 147 _utest=False): argument 166 _utest=_utest)
|
D | query.py | 37 _htest=False, _utest=False): argument 82 if not _utest: 155 *, _htest=False, _utest=False): argument 157 _htest=_htest, _utest=_utest) 180 *, _htest=False, _utest=False): argument 182 _htest=_htest, _utest=_utest) 217 used_names={}, _htest=False, _utest=False): argument 227 used_names=used_names, _htest=_htest, _utest=_utest)
|
D | help_about.py | 26 def __init__(self, parent, title=None, *, _htest=False, _utest=False): argument 54 self._utest = _utest 56 if not _utest: 183 self, title, text, _utest=self._utest) 194 self, title, fn, encoding, _utest=self._utest)
|
D | browser.py | 64 def __init__(self, master, path, *, _htest=False, _utest=False): argument 85 self._utest = _utest 97 flist = (pyshell.flist if not (self._htest or self._utest) 120 if not self._utest:
|
D | pathbrowser.py | 11 def __init__(self, master, *, _htest=False, _utest=False): argument 17 self._utest = _utest
|
D | config_key.py | 49 *, _htest=False, _utest=False): argument 92 if not _utest:
|
D | config.py | 163 def __init__(self, _utest=False): argument 169 if not _utest:
|
D | configdialog.py | 45 def __init__(self, parent, title='', *, _htest=False, _utest=False): argument 64 if not _utest: 88 if not _utest:
|
D | NEWS.txt | 291 bpo-31649: Make _htest and _utest parameters keyword-only. 528 bpo-30303: Add _utest option to textview; add new tests.
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_help_about.py | 29 cls.dialog = About(cls.root, 'About IDLE', _utest=True) 97 cls.dialog = About(cls.root, _utest=True) 121 cls.dialog = About(cls.root, 'About IDLE', _utest=True) 144 _utest = True variable in Dummy_about_dialog
|
D | test_config.py | 200 conf = config.IdleConf(_utest=True) 217 def new_config(self, _utest=False): argument 218 return config.IdleConf(_utest=_utest) 225 conf = config.IdleConf(_utest=True) 237 conf = self.new_config(_utest=True) 260 conf = self.new_config(_utest=True) 281 conf = self.new_config(_utest=True) 308 conf = self.new_config(_utest=True) 417 conf = self.new_config(_utest=True)
|
D | test_config_key.py | 38 cls.root, 'Title', '<<Test>>', keylist, _utest=True) 114 cls.dialog = gkd(cls.root, 'Title', '<<Test>>', [], _utest=True) 182 cls.dialog = cls.Basic(cls.root, 'Title', '<<Test>>', [], _utest=True) 251 cls.dialog = gkd(cls.root, 'Title', '<<Test>>', [], _utest=True)
|
D | test_query.py | 254 cls.dialog = query.Query(root, 'TEST', 'test', _utest=True) 299 dialog = query.SectionName(root, 'T', 't', {'abc'}, _utest=True) 319 dialog = query.ModuleName(root, 'T', 't', 'idlelib', _utest=True) 339 filepath=__file__, _utest=True)
|
D | test_textview.py | 152 self.view = tv.view_text(root, 'TITLE_TEXT', 'COMMAND', _utest=True) 166 encoding='ascii', _utest=True)
|
D | test_pathbrowser.py | 25 cls.pb = pathbrowser.PathBrowser(cls.root, _utest=True)
|
D | test_browser.py | 24 cls.mb = browser.ModuleBrowser(cls.root, __file__, _utest=True)
|
D | README.txt | 213 if not _utest:
|
D | test_configdialog.py | 38 dialog = configdialog.ConfigDialog(root, 'Test', _utest=True)
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_configdialog.py | 28 d = ConfigDialog(self.root, 'Test', _utest=True)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a2.rst | 612 IDLE - Make _htest, _utest parameters keyword only.
|
D | 3.6.2rc1.rst | 793 Add _utest option to textview; add new tests. Increase coverage to 100%.
|
D | 3.6.4rc1.rst | 1050 IDLE - Make _htest, _utest parameters keyword only.
|
D | 3.7.0a1.rst | 6198 Add _utest option to textview; add new tests. Increase coverage to 100%.
|
/external/python/cpython2/Lib/idlelib/ |
D | configDialog.py | 26 def __init__(self, parent, title='', _htest=False, _utest=False): argument 75 if not _utest:
|