Home
last modified time | relevance | path

Searched refs:GetSectionList (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/idlelib/
Dconfigdialog.py749 item_list = idleConf.GetSectionList('default', 'highlight')
752 item_list = idleConf.GetSectionList('user', 'highlight')
760 item_list = idleConf.GetSectionList('user', 'highlight')
763 item_list = idleConf.GetSectionList('default', 'highlight')
904 used_names = (idleConf.GetSectionList('user', 'highlight') +
905 idleConf.GetSectionList('default', 'highlight'))
955 custom_theme_list = idleConf.GetSectionList('user', 'highlight')
1101 item_list = idleConf.GetSectionList('user', 'highlight')
1296 item_list = idleConf.GetSectionList('default', 'keys')
1299 item_list = idleConf.GetSectionList('user', 'keys')
[all …]
Dconfig.py258 def GetSectionList(self, configSet, configType): member in IdleConf
421 self.GetSectionList('default', 'extensions'))
423 self.GetSectionList('user', 'extensions'))
/third_party/python/Lib/idlelib/idle_test/
Dtest_configdialog.py290 for section in idleConf.GetSectionList('user', 'highlight'):
621 eq(idleConf.GetSectionList('user', 'highlight'), [first_new])
632 eq(idleConf.GetSectionList('user', 'highlight'), [first_new, second_new])
740 eq(idleConf.GetSectionList('user', 'highlight'), [theme_name, theme_name2])
750 eq(idleConf.GetSectionList('user', 'highlight'), [theme_name2])
763 eq(idleConf.GetSectionList('user', 'highlight'), [])
797 for section in idleConf.GetSectionList('user', 'keys'):
1064 eq(idleConf.GetSectionList('user', 'keys'), [first_new])
1075 eq(idleConf.GetSectionList('user', 'keys'), [first_new, second_new])
1151 eq(idleConf.GetSectionList('user', 'keys'), [keyset_name, keyset_name2])
[all …]
Dtest_config.py344 conf.GetSectionList('default', 'main'),
348 conf.GetSectionList('user', 'main'),
353 conf.GetSectionList('foobar', 'main')
355 conf.GetSectionList('default', 'notexists')
436 conf.RemoveKeyBindNames(conf.GetSectionList('default', 'extensions')),