MCPcopy
hub / github.com/geekcomputers/Python / get_char_list

Method get_char_list

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

Source from the content-addressed store, hash-verified

398 self.maximum_value_of_bi.grid(row=r, column=2, padx=10)
399
400 def get_char_list(self, r):
401 self.char_list_label = Label(
402 gui, text=" Characters : ", font=("calibre", 10, "bold"), width=17
403 )
404 self.char_list = Entry(
405 gui, textvariable=char_lis, font=("calibre", 10, "normal"), width=43
406 )
407 self.char_list.insert(END, "(Space separated characters)")
408 self.char_list.bind("<FocusIn>", lambda args: self.char_list.delete("0", "end"))
409 self.char_list_label.grid(row=r, column=0, pady=10)
410 self.char_list.grid(row=r, column=1, columnspan=2, padx=10)
411
412 def show_button(self, r):
413 self.back_btn = Button(

Callers 2

take_inputMethod · 0.80
take_inputMethod · 0.80

Calls 2

insertMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected