Home
last modified time | relevance | path

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

/third_party/python/Lib/idlelib/
Dconfig.py214 def GetOption(self, configType, section, option, default=None, type=None, argument
228 if self.userCfg[configType].has_option(section, option):
229 return self.userCfg[configType].Get(section, option,
236 self.userCfg[configType].Get(section, option, raw=raw)))
237 _warn(warning, configType, section, option)
239 if self.defaultCfg[configType].has_option(section,option):
240 return self.defaultCfg[configType].Get(
251 _warn(warning, configType, section, option)
254 def SetOption(self, configType, section, option, value): argument
256 self.userCfg[configType].SetOption(section, option, value)
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_squeezer.py110 def set_idleconf_option_with_cleanup(self, configType, section, option, value): argument
111 prev_val = idleConf.GetOption(configType, section, option)
112 idleConf.SetOption(configType, section, option, value)
114 configType, section, option, prev_val)
Dtest_sidebar.py79 def mock_idleconf_GetFont(root, configType, section): argument
628 def mock_idleconf_GetFont(root, configType, section): argument
Dtest_codecontext.py96 def mock_idleconf_GetFont(root, configType, section): argument