/external/python/cpython2/Lib/idlelib/ |
configHandler.py | 282 def GetHighlight(self, theme, element, fgBg=None): 285 fgBg - string ('fg' or 'bg') or None. 301 if not fgBg: # Return dict of both colors 304 if fgBg == 'fg': 306 if fgBg == 'bg': 309 raise InvalidFgBg('Invalid fgBg specified')
|
EditorWindow.py | 762 cursor_color = idleConf.GetHighlight(theme, 'cursor', fgBg='fg') [all...] |
configDialog.py | [all...] |
/external/python/cpython3/Lib/idlelib/ |
config.py | 286 def GetHighlight(self, theme, element, fgBg=None): 289 fgBg - string ('fg' or 'bg') or None. 305 if not fgBg: # Return dict of both colors 308 if fgBg == 'fg': 310 if fgBg == 'bg': 313 raise InvalidFgBg('Invalid fgBg specified') [all...] |
colorizer.py | 43 cursor_color = idleConf.GetHighlight(theme, 'cursor', fgBg='fg')
|
configdialog.py | [all...] |
/external/python/cpython3/Lib/idlelib/idle_test/ |
test_configdialog.py | 625 eq(hs_tag('break', fg), gh(theme, 'break', fgBg='fg')) 626 eq(hs_tag('cursor', bg), gh(theme, 'normal', fgBg='bg')) 636 eq(hs_tag('break', fg), gh(theme, 'break', fgBg='fg')) 637 eq(hs_tag('cursor', bg), gh(theme, 'normal', fgBg='bg')) [all...] |