Skip to content

Commit

Permalink
Investigating #403
Browse files Browse the repository at this point in the history
  • Loading branch information
jarvisteach committed Apr 13, 2018
1 parent 6b87422 commit 6e028b3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/issues/issue403.py
@@ -0,0 +1,14 @@
import sys
sys.path.append("../../")

from appJar import gui

with gui() as app:
app.label('hello world')
app.tree("t1",
"""<people>
<person><name>Fred</name><age>45</age><gender>Male</gender></person>
<person><name>Tina</name><age>37</age><gender>Female</gender></person>
<person><name>CLive</name><age>28</age><gender>Male</gender></person>
<person><name>Betty</name><age>51</age><gender>Female</gender></person>
</people>""")

0 comments on commit 6e028b3

Please sign in to comment.