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

Method clear_key_seq

Lib/idlelib/config_key.py:217–223  ·  view source on GitHub ↗

Clear modifiers and keys selection.

(self)

Source from the content-addressed store, hash-verified

215 return [mod for mod in mod_list if mod]
216
217 def clear_key_seq(self):
218 "Clear modifiers and keys selection."
219 self.list_keys_final.select_clear(0, 'end')
220 self.list_keys_final.yview('moveto', '0.0')
221 for variable in self.modifier_vars:
222 variable.set('')
223 self.key_string.set('')
224
225 def ok(self):
226 self.result = ''

Callers 2

toggle_levelMethod · 0.95
setUpMethod · 0.80

Calls 3

select_clearMethod · 0.80
yviewMethod · 0.45
setMethod · 0.45

Tested by 1

setUpMethod · 0.64