diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:32:13 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:32:13 (GMT) |
| commit | e48741a61946d97444acc395f6874bf3346bbf33 (patch) | |
| tree | 3524b0be9025b5f49724c3acb189689913465631 /Lib/tkinter/__init__.py | |
| parent | b83a86a21031ea46fdfbaa53be186a08c6cb16dc (diff) | |
| parent | 4cf4f3a7c62c4db00d56507ac9e37a05381941cb (diff) | |
| download | cpython-e48741a61946d97444acc395f6874bf3346bbf33.zip cpython-e48741a61946d97444acc395f6874bf3346bbf33.tar.gz cpython-e48741a61946d97444acc395f6874bf3346bbf33.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 f2cb60f..3ba4bb0 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -380,7 +380,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 |
