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/idle_test/
Dtest_config.py381 conf.GetThemeDict('default', 'IDLE Classic'),
382 conf.GetThemeDict('user', 'IDLE Classic'))
385 conf.GetThemeDict('bad', 'IDLE Classic')
Dtest_configdialog.py643 eq(idleConf.GetThemeDict('default', 'IDLE Classic'),
644 idleConf.GetThemeDict('user', first_new))
654 self.assertNotEqual(idleConf.GetThemeDict('user', first_new),
655 idleConf.GetThemeDict('user', second_new))
658 eq(idleConf.GetThemeDict('user', first_new),
659 idleConf.GetThemeDict('user', second_new))
/external/python/cpython3/Lib/idlelib/
Dconfig.py282 theme_dict = self.GetThemeDict(cfg, theme)
289 def GetThemeDict(self, type, themeName): member in IdleConf
Dconfigdialog.py1175 new_theme = idleConf.GetThemeDict(theme_type, theme_name)