MCPcopy Create free account
hub / github.com/geekcomputers/Python / get_n

Method get_n

Test-Case-Generator/test_case.py:330–342  ·  view source on GitHub ↗
(self, r)

Source from the content-addressed store, hash-verified

328 self.test_case_count.grid(row=r, column=1)
329
330 def get_n(self, r):
331 self.minimum_value_of_n = Entry(
332 gui, textvariable=n_min, font=("calibre", 10, "normal")
333 )
334 self.min_max_values_of_n_label = Label(
335 gui, text=" <= n <=", font=("calibre", 10, "bold")
336 )
337 self.maximum_value_of_n = Entry(
338 gui, textvariable=n_max, font=("calibre", 10, "normal")
339 )
340 self.minimum_value_of_n.grid(row=r, column=0, padx=10, pady=10)
341 self.min_max_values_of_n_label.grid(row=r, column=1, ipadx=5, ipady=1)
342 self.maximum_value_of_n.grid(row=r, column=2, padx=(10, 10))
343
344 def get_m(self, r):
345 self.minimum_value_of_m = Entry(

Callers 9

take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80
take_inputMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected