HomeSort by relevance Sort by last modified time
    Searched refs:GrepDialog (Results 1 - 5 of 5) sorted by null

  /external/python/cpython2/Lib/idlelib/idle_test/
test_grep.py 2 Non-gui unit tests for idlelib.GrepDialog methods.
11 from idlelib.GrepDialog import GrepDialog
17 '''GrepDialog.__init__ calls parent SearchDiabolBase which attaches the
28 #default_command = GrepDialog.default_command
29 grep_it = GrepDialog.grep_it.im_func
30 findfiles = GrepDialog.findfiles.im_func
77 # To write this, mode OutputWindow import to top of GrepDialog
  /external/python/cpython3/Lib/idlelib/idle_test/
test_grep.py 2 Non-gui unit tests for grep.GrepDialog methods.
8 from idlelib.grep import GrepDialog
16 '''GrepDialog.__init__ calls parent SearchDiabolBase which attaches the
28 #default_command = GrepDialog.default_command
29 grep_it = GrepDialog.grep_it
30 findfiles = GrepDialog.findfiles
80 # To write this, move outwin import to top of GrepDialog
  /external/python/cpython2/Lib/idlelib/
GrepDialog.py 6 from Tkinter import StringVar, BooleanVar, Checkbutton # for GrepDialog
17 engine._grepdialog = GrepDialog(root, engine, flist)
22 class GrepDialog(SearchDialogBase):
137 root.title("Test GrepDialog")
150 button = Button(root, text="Show GrepDialog", command=show_grep_dialog)
EditorWindow.py 14 from idlelib import GrepDialog
632 GrepDialog.grep(self.text, self.io, self.flist)
    [all...]
  /external/python/cpython3/Lib/idlelib/
grep.py 21 """Create or find singleton GrepDialog instance.
33 engine._grepdialog = GrepDialog(root, engine, flist)
39 class GrepDialog(SearchDialogBase):
180 top.title("Test GrepDialog")
195 button = Button(frame, text="Show GrepDialog", command=show_grep_dialog)

Completed in 1699 milliseconds