diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:37:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:37:54 (GMT) |
commit | 32e258d877762cc30413e77aa847ef4755b49305 (patch) | |
tree | 7299f2cf1a617bdbc444873d376af2a19bac6228 /Lib/tkinter/__init__.py | |
parent | f52b98d7dc398b4c549fe4d23a8b870d2929d96a (diff) | |
parent | e48741a61946d97444acc395f6874bf3346bbf33 (diff) | |
download | cpython-32e258d877762cc30413e77aa847ef4755b49305.zip cpython-32e258d877762cc30413e77aa847ef4755b49305.tar.gz cpython-32e258d877762cc30413e77aa847ef4755b49305.tar.bz2 |
Merge heads
Diffstat (limited to 'Lib/tkinter/__init__.py')
-rw-r--r-- | Lib/tkinter/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index 9300d01..6755be6 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -391,7 +391,7 @@ class Misc: background, highlightColor, selectForeground, disabledForeground, insertBackground, troughColor.""" self.tk.call(('tk_setPalette',) - + _flatten(args) + _flatten(kw.items())) + + _flatten(args) + _flatten(list(kw.items()))) def tk_menuBar(self, *args): """Do not use. Needed in Tk 3.6 and earlier.""" pass # obsolete since Tk 4.0 |