Searched refs:GetCoreKeys (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config.py | 594 eq(conf.GetCoreKeys()['<<center-insert>>'], ['<Control-l>']) 595 eq(conf.GetCoreKeys()['<<copy>>'], ['<Control-c>', '<Control-C>']) 596 eq(conf.GetCoreKeys()['<<history-next>>'], ['<Alt-n>']) 597 eq(conf.GetCoreKeys('IDLE Classic Windows')['<<center-insert>>'], 599 eq(conf.GetCoreKeys('IDLE Classic OSX')['<<copy>>'], ['<Command-Key-c>']) 600 eq(conf.GetCoreKeys('IDLE Classic Unix')['<<history-next>>'], 602 eq(conf.GetCoreKeys('IDLE Modern Unix')['<<history-next>>'],
|
/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 559 keySet = self.GetCoreKeys(keySetName) 577 return ('<<'+virtualEvent+'>>') in self.GetCoreKeys() 582 def GetCoreKeys(self, keySetName=None): member in IdleConf
|
D | configDialog.py | 721 prevKeys = idleConf.GetCoreKeys(prevKeySetName)
|
/external/python/cpython3/Lib/idlelib/ |
D | config.py | 583 keySet = self.GetCoreKeys(keySetName) 601 return ('<<'+virtualEvent+'>>') in self.GetCoreKeys() 611 def GetCoreKeys(self, keySetName=None): member in IdleConf
|
D | configdialog.py | 1661 prev_keys = idleConf.GetCoreKeys(prev_key_set_name)
|