Message218747
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. |
|
Date |
User |
Action |
Args |
2014-05-18 16:04:31 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, loewis, terry.reedy, gpolo |
2014-05-18 16:04:31 | serhiy.storchaka | set | messageid: <1400429071.94.0.00909655456626.issue21525@psf.upfronthosting.co.za> |
2014-05-18 16:04:31 | serhiy.storchaka | link | issue21525 messages |
2014-05-18 16:04:31 | serhiy.storchaka | create | |
|