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

Method save_as_new_key_set

Lib/idlelib/configdialog.py:1423–1427  ·  view source on GitHub ↗

Prompt for name of new key set and save changes using that name.

(self)

Source from the content-addressed store, hash-verified

1421 return new_keyset
1422
1423 def save_as_new_key_set(self):
1424 "Prompt for name of new key set and save changes using that name."
1425 new_keys_name = self.get_new_keys_name('New Key Set Name:')
1426 if new_keys_name:
1427 self.create_new_key_set(new_keys_name)
1428
1429 def on_bindingslist_select(self, event):
1430 "Activate button to assign new keys to selected action."

Callers

nothing calls this directly

Calls 2

get_new_keys_nameMethod · 0.95
create_new_key_setMethod · 0.95

Tested by

no test coverage detected