Message169839
| 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:43 | Bryan.Oakley | set | recipients:
+ Bryan.Oakley |
| 2012年09月04日 21:41:43 | Bryan.Oakley | set | messageid: <1346794903.35.0.326071924778.issue15861@psf.upfronthosting.co.za> |
| 2012年09月04日 21:41:42 | Bryan.Oakley | link | issue15861 messages |
| 2012年09月04日 21:41:42 | Bryan.Oakley | create |
|