MCPcopy Index your code
hub / github.com/python/cpython / create_other_buttons

Method create_other_buttons

Lib/idlelib/grep.py:117–122  ·  view source on GitHub ↗

Add check button to recurse down subdirectories.

(self)

Source from the content-addressed store, hash-verified

115 self.globent = self.make_entry("In files:", self.globvar)[0]
116
117 def create_other_buttons(self):
118 "Add check button to recurse down subdirectories."
119 btn = Checkbutton(
120 self.make_frame()[0], variable=self.recvar,
121 text="Recurse down subdirectories")
122 btn.pack(side="top", fill="both")
123
124 def create_command_buttons(self):
125 "Create base command buttons and add button for Search Files."

Callers

nothing calls this directly

Calls 3

CheckbuttonClass · 0.90
make_frameMethod · 0.45
packMethod · 0.45

Tested by

no test coverage detected