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

Method create_command_buttons

Lib/idlelib/searchbase.py:179–185  ·  view source on GitHub ↗

Place buttons in vertical command frame gridded on right.

(self)

Source from the content-addressed store, hash-verified

177 return b
178
179 def create_command_buttons(self):
180 "Place buttons in vertical command frame gridded on right."
181 f = self.buttonframe = Frame(self.frame)
182 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
183
184 b = self.make_button("Close", self.close)
185 b.lower()
186
187
188class _searchbase(SearchDialogBase): # htest #

Callers 1

create_widgetsMethod · 0.95

Calls 4

make_buttonMethod · 0.95
FrameClass · 0.90
gridMethod · 0.45
lowerMethod · 0.45

Tested by

no test coverage detected