Home
last modified time | relevance | path

Searched refs:SearchDialogBase (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DGrepDialog.py9 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)
DReplaceDialog.py4 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)
DSearchDialog.py4 from idlelib.SearchDialogBase import SearchDialogBase
23 class SearchDialog(SearchDialogBase):
26 SearchDialogBase.create_widgets(self)
DSearchDialogBase.py6 class SearchDialogBase: class
DREADME.txt66 SearchDialogBase.py # Define base for search, replace, and grep dialogs.
151 --- # Next 5 items use SearchEngine; dialogs use SearchDialogBase
DChangeLog442 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…
DNEWS.txt242 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
/external/python/cpython3/Lib/idlelib/
Dgrep.py13 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)
Dreplace.py10 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)
Dsearch.py10 from idlelib.searchbase import SearchDialogBase
62 class SearchDialog(SearchDialogBase):
67 SearchDialogBase.create_widgets(self)
Dsearchbase.py7 class SearchDialogBase: class
186 class _searchbase(SearchDialogBase): # htest #
DChangeLog442 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…
DNEWS.txt1074 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_searchdialogbase.py11 from idlelib import SearchDialogBase as sdb
39 self.dialog = sdb.SearchDialogBase(root=self.root, engine=self.engine)
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_searchbase.py41 self.dialog = sdb.SearchDialogBase(root=self.root, engine=self.engine)
/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst263 Add unittest for SearchDialogBase. Patch by Phil Webster.
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4731 Add unittest for SearchDialogBase. Patch by Phil Webster.
/external/python/cpython3/Misc/
DHISTORY1728 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.