/external/python/cpython3/Lib/idlelib/ |
D | query.py | 39 _htest=False, _utest=False): argument 61 if not _utest: # Otherwise fail when directly run unittest. 84 if not _utest: 168 *, _htest=False, _utest=False): argument 170 _htest=_htest, _utest=_utest) 192 *, _htest=False, _utest=False): argument 194 _htest=_htest, _utest=_utest) 250 used_names={}, _htest=False, _utest=False): argument 260 used_names=used_names, _htest=_htest, _utest=_utest) 346 _htest=False, _utest=False): argument [all …]
|
D | textview.py | 109 *, _htest=False, _utest=False): argument 140 if not _utest: 150 def view_text(parent, title, contents, modal=True, wrap='word', _utest=False): argument 161 return ViewWindow(parent, title, contents, modal, wrap=wrap, _utest=_utest) 165 _utest=False): argument 184 _utest=_utest)
|
D | help_about.py | 29 def __init__(self, parent, title=None, *, _htest=False, _utest=False): argument 57 self._utest = _utest 59 if not _utest: 187 self, title, text, _utest=self._utest) 198 self, title, fn, encoding, _utest=self._utest)
|
D | browser.py | 65 def __init__(self, master, path, *, _htest=False, _utest=False): argument 86 self._utest = _utest 98 flist = (pyshell.flist if not (self._htest or self._utest) 121 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 | 50 *, _htest=False, _utest=False): argument 94 if not _utest:
|
D | config.py | 156 def __init__(self, _utest=False): argument 164 if not _utest:
|
D | configdialog.py | 49 def __init__(self, parent, title='', *, _htest=False, _utest=False): argument 68 if not _utest: 91 if not _utest:
|
D | NEWS.txt | 603 bpo-31649: Make _htest and _utest parameters keyword-only. 840 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 | 187 conf = config.IdleConf(_utest=True) 204 def new_config(self, _utest=False): argument 205 return config.IdleConf(_utest=_utest) 212 conf = config.IdleConf(_utest=True) 224 conf = self.new_config(_utest=True) 247 conf = self.new_config(_utest=True) 268 conf = self.new_config(_utest=True) 295 conf = self.new_config(_utest=True) 400 conf = self.new_config(_utest=True)
|
D | test_query.py | 325 cls.dialog = query.Query(root, 'TEST', 'test', _utest=True) 370 dialog = query.SectionName(root, 'T', 't', {'abc'}, _utest=True) 388 dialog = query.ModuleName(root, 'T', 't', 'idlelib', _utest=True) 405 dialog = query.Goto(root, 'T', 't', _utest=True) 422 filepath=__file__, _utest=True) 442 cli_args=['a', 'b=1'], _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_textview.py | 204 self.view = tv.view_text(root, 'TITLE_TEXT', 'COMMAND', _utest=True) 218 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 | 39 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 | 609 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 | 1042 IDLE - Make _htest, _utest parameters keyword only.
|
D | 3.7.0a1.rst | 6175 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:
|