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 serhiy.storchaka
Recipients gpolo, loewis, serhiy.storchaka, terry.reedy
Date 2014-05-18.16:04:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1400429071.94.0.00909655456626.issue21525@psf.upfronthosting.co.za>
In-reply-to
Content
There is very common error when user pass list instead tuple to Tkinter. Some functions accept both tuple and list, some functions reject list, but many functions silently convert non-tuple value to str (e.g. [1, 2] -> '[1, 2]' instead of expected Tcl representation '{1 2}'). The proposed patch adds support of Python lists in all Tkinter functions which accept tuples.
History
Date User Action Args
2014-05-18 16:04:31serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, terry.reedy, gpolo
2014-05-18 16:04:31serhiy.storchakasetmessageid: <1400429071.94.0.00909655456626.issue21525@psf.upfronthosting.co.za>
2014-05-18 16:04:31serhiy.storchakalinkissue21525 messages
2014-05-18 16:04:31serhiy.storchakacreate