diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:40:36 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-02 08:40:36 (GMT) |
| commit | 08f455652444e7debd746ff42efc72cb76d4ec7b (patch) | |
| tree | 879e167103f25f2d336ed753c29cc720db6cbe75 /Lib/tkinter/__init__.py | |
| parent | 2869b00d7958177b90debad8d48bb637b84cc468 (diff) | |
| parent | cc6b514a72f28373a2724e87ee1472c610895d1c (diff) | |
| download | cpython-08f455652444e7debd746ff42efc72cb76d4ec7b.zip cpython-08f455652444e7debd746ff42efc72cb76d4ec7b.tar.gz cpython-08f455652444e7debd746ff42efc72cb76d4ec7b.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 0addc18..3956e85 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 |
