This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author HJarausch
Recipients HJarausch
Date 2012-11-23.17:24:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1353691491.46.0.777146427691.issue16541@psf.upfronthosting.co.za>
In-reply-to
Content
import tkinter as Tk
root= Tk.Tk()
root.tk_setPalette(background = 'AntiqueWhite1', foreground = 'blue')

but python-3.3:0+ (3.3:27cb1a3d57c8+) gives

Traceback (most recent call last):
  File "Matr_Select.py", line 174, in <module>
    root.tk_setPalette(background = 'AntiqueWhite1', foreground = 'blue')
  File "/usr/lib64/python3.3/tkinter/__init__.py", line 390, in 
tk_setPalette
    + _flatten(args) + _flatten(kw.items()))
TypeError: argument must be sequence

Thanks for looking into it,
Helmut.
History
Date User Action Args
2012-11-23 17:24:51HJarauschsetrecipients: + HJarausch
2012-11-23 17:24:51HJarauschsetmessageid: <1353691491.46.0.777146427691.issue16541@psf.upfronthosting.co.za>
2012-11-23 17:24:51HJarauschlinkissue16541 messages
2012-11-23 17:24:51HJarauschcreate