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 Bryan.Oakley
Recipients Bryan.Oakley
Date 2012-09-04.21:41:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346794903.35.0.326071924778.issue15861@psf.upfronthosting.co.za>
In-reply-to
Content
If you try to insert an item into the treeview, give it a tuple of values for the "values" attribute, and one of those values has unbalanced braces, you'll get an error "unmatched open brace in list"

To reproduce:

import Tkinter as tk
import ttk

root = tk.Tk()
tree = ttk.Treeview(root)
tree.insert("","end",values=("one","two","bam! {"))

root.mainloop()
History
Date User Action Args
2012-09-04 21:41:43Bryan.Oakleysetrecipients: + Bryan.Oakley
2012-09-04 21:41:43Bryan.Oakleysetmessageid: <1346794903.35.0.326071924778.issue15861@psf.upfronthosting.co.za>
2012-09-04 21:41:42Bryan.Oakleylinkissue15861 messages
2012-09-04 21:41:42Bryan.Oakleycreate