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 Stefan.Stuhr
Recipients Bryan.Oakley, Stefan.Stuhr, asvetlov, eric.smith, ezio.melotti, ned.deily, serhiy.storchaka, zach.ware
Date 2012-11-08.23:11:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352416272.83.0.564875101142.issue15861@psf.upfronthosting.co.za>
In-reply-to
Content
I think this is a case of faulty over-engineering in the ttk module. The following works just fine (imports converted to Python3):

import tkinter as tk
import tkinter.ttk as ttk

root = tk.Tk()
tree = ttk.Treeview(root, columns="1 2 3")
tree.tk.call(tree, "insert", "", "end" , "-values", ("one","two","bam! {"))
tree.grid()

root.mainloop()
History
Date User Action Args
2012-11-08 23:11:12Stefan.Stuhrsetrecipients: + Stefan.Stuhr, eric.smith, ned.deily, ezio.melotti, asvetlov, zach.ware, serhiy.storchaka, Bryan.Oakley
2012-11-08 23:11:12Stefan.Stuhrsetmessageid: <1352416272.83.0.564875101142.issue15861@psf.upfronthosting.co.za>
2012-11-08 23:11:12Stefan.Stuhrlinkissue15861 messages
2012-11-08 23:11:12Stefan.Stuhrcreate