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 Lita.Cho, jesstess, ned.deily, serhiy.storchaka, terry.reedy
Date 2014-07-27.07:54:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <2982013.QTquYMujxq@raxxla>
In-reply-to <1406431501.83.0.494415630946.issue21933@psf.upfronthosting.co.za>
Content
In 3.5 lists should work as fine as tuples. But in earlier version it would be 
safer to convert list to tuple.

Configure's value is preprocessed in Misc._options. If it is a tuple or a list 
with only int and str items, it will stringified. But if a list contains non-
int or non-str items, it will passed as is, and _tkinter in pre-3.5 will fail 
because lists are not supported.
History
Date User Action Args
2014-07-27 07:54:10serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, ned.deily, jesstess, Lita.Cho
2014-07-27 07:54:10serhiy.storchakalinkissue21933 messages
2014-07-27 07:54:09serhiy.storchakacreate