Home
last modified time | relevance | path

Searched refs:GetThemeDict (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DconfigHandler.py292 themeDict = self.GetThemeDict('default', theme)
294 themeDict = self.GetThemeDict('user', theme)
311 def GetThemeDict(self, type, themeName): member in IdleConf
DconfigDialog.py873 newTheme = idleConf.GetThemeDict(themeType, themeName)
/external/python/cpython3/Lib/idlelib/
Dconfig.py296 themeDict = self.GetThemeDict('default', theme)
298 themeDict = self.GetThemeDict('user', theme)
315 def GetThemeDict(self, type, themeName): member in IdleConf
Dconfigdialog.py1157 new_theme = idleConf.GetThemeDict(theme_type, theme_name)
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_configdialog.py547 eq(idleConf.GetThemeDict('default', 'IDLE Classic'),
548 idleConf.GetThemeDict('user', first_new))
558 self.assertNotEqual(idleConf.GetThemeDict('user', first_new),
559 idleConf.GetThemeDict('user', second_new))
562 eq(idleConf.GetThemeDict('user', first_new),
563 idleConf.GetThemeDict('user', second_new))
Dtest_config.py398 conf.GetThemeDict('default', 'IDLE Classic'),
399 conf.GetThemeDict('user', 'IDLE Classic'))
402 conf.GetThemeDict('bad', 'IDLE Classic')