radec94 / stagger

Automatically exported from code.google.com/p/stagger
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

TAG[COMM, "eng", "foo"] = "Foobar baz." #13

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Make the above work.

>>> tag[COMM, "eng"]
[COMM("eng", "foo", "text text"), 
 COMM("eng", "bar", "text2 text2")]
>>> tag[COMM, "eng", "foo"]
COMM("eng", "foo", "text text")

>>> tag[COMM, "eng", "foo"] = "42"
>>> tag[COMM, "eng"]
[COMM("eng", "foo", "42"), 
 COMM("eng", "bar", "text2 text2")]

Original issue reported on code.google.com by Karoly.Lorentey on 20 Jun 2009 at 4:05