Searched refs:SearchDialogBase (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | GrepDialog.py | 9 from idlelib.SearchDialogBase import SearchDialogBase 22 class GrepDialog(SearchDialogBase): 29 SearchDialogBase.__init__(self, root, engine) 35 SearchDialogBase.open(self, text, searchphrase) 47 SearchDialogBase.create_entries(self) 60 SearchDialogBase.create_command_buttons(self)
|
D | ReplaceDialog.py | 4 from idlelib.SearchDialogBase import SearchDialogBase 17 class ReplaceDialog(SearchDialogBase): 23 SearchDialogBase.__init__(self, root, engine) 27 SearchDialogBase.open(self, text) 42 SearchDialogBase.create_entries(self) 46 SearchDialogBase.create_command_buttons(self) 188 SearchDialogBase.close(self, event)
|
D | SearchDialog.py | 4 from idlelib.SearchDialogBase import SearchDialogBase 23 class SearchDialog(SearchDialogBase): 26 SearchDialogBase.create_widgets(self)
|
D | SearchDialogBase.py | 6 class SearchDialogBase: class
|
D | README.txt | 66 SearchDialogBase.py # Define base for search, replace, and grep dialogs. 151 --- # Next 5 items use SearchEngine; dialogs use SearchDialogBase
|
D | ChangeLog | 442 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 471 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 538 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 560 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 1389 …, WindowList.py, UndoDelegator.py, StackViewer.py, SearchEngine.py, SearchDialogBase.py, SearchDia…
|
D | NEWS.txt | 242 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
|
/external/python/cpython3/Lib/idlelib/ |
D | grep.py | 13 from idlelib.searchbase import SearchDialogBase 64 class GrepDialog(SearchDialogBase): 101 SearchDialogBase.open(self, text, searchphrase) 114 SearchDialogBase.create_entries(self) 126 SearchDialogBase.create_command_buttons(self)
|
D | replace.py | 10 from idlelib.searchbase import SearchDialogBase 31 class ReplaceDialog(SearchDialogBase): 62 SearchDialogBase.open(self, text) 78 SearchDialogBase.create_entries(self) 87 SearchDialogBase.create_command_buttons(self) 265 SearchDialogBase.close(self, event)
|
D | search.py | 10 from idlelib.searchbase import SearchDialogBase 62 class SearchDialog(SearchDialogBase): 67 SearchDialogBase.create_widgets(self)
|
D | searchbase.py | 7 class SearchDialogBase: class 186 class _searchbase(SearchDialogBase): # htest #
|
D | ChangeLog | 442 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 471 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 538 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 560 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 1389 …, WindowList.py, UndoDelegator.py, StackViewer.py, SearchEngine.py, SearchDialogBase.py, SearchDia…
|
D | NEWS.txt | 1074 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_searchdialogbase.py | 11 from idlelib import SearchDialogBase as sdb 39 self.dialog = sdb.SearchDialogBase(root=self.root, engine=self.engine)
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_searchbase.py | 41 self.dialog = sdb.SearchDialogBase(root=self.root, engine=self.engine)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.8.rst | 263 Add unittest for SearchDialogBase. Patch by Phil Webster.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 4731 Add unittest for SearchDialogBase. Patch by Phil Webster.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1728 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
|