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 kumba, serhiy.storchaka, terry.reedy
Date 2018-03-15.10:07:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1521108479.74.0.467229070634.issue32328@psf.upfronthosting.co.za>
In-reply-to
Content
According to the documentation (https://www.tcl.tk/man/tcl/TkCmd/ttk_treeview.htm) the item option "values" is "The list of values associated with the item.", and the item option "tags" is "A list of tags associated with this item." Tcl's list corresponds Python's tuple (lists are also accepted in Python 3).

Change your example to:

    kw = {'values': ('" ";',), 'tags': ()}
History
Date User Action Args
2018-03-15 10:07:59serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kumba
2018-03-15 10:07:59serhiy.storchakasetmessageid: <1521108479.74.0.467229070634.issue32328@psf.upfronthosting.co.za>
2018-03-15 10:07:59serhiy.storchakalinkissue32328 messages
2018-03-15 10:07:59serhiy.storchakacreate