Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_misc.py25 root.tk_setPalette('black')
27 root.tk_setPalette('white')
31 root.tk_setPalette, 'spam')
33 root.tk_setPalette(background='black')
35 root.tk_setPalette(background='blue', highlightColor='yellow')
38 root.tk_setPalette(background='yellow', highlightColor='blue')
43 root.tk_setPalette, background='spam')
46 root.tk_setPalette, spam='white')
49 root.tk_setPalette, highlightColor='blue')
/external/python/cpython3/Lib/tkinter/
D__init__.py616 def tk_setPalette(self, *args, **kw): member in Misc
/external/python/cpython2/Lib/lib-tk/
DTkinter.py472 def tk_setPalette(self, *args, **kw): member in Misc
/external/python/cpython3/Misc/
DHISTORY5504 - Issue #16541: tk_setPalette() now works with keyword arguments.