Stefan Stuhr added the comment:

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()

----------
nosy: +Stefan.Stuhr

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15861>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to