summaryrefslogtreecommitdiff
path: root/samples
diff options
context:
space:
mode:
authorfaassen <none@none>2005-01-12 19:23:14 +0100
committerfaassen <none@none>2005-01-12 19:23:14 +0100
commit83bbc2cba92c84a3f0a569a4e5ff2dd4f631cd7c (patch)
treecbcc65f7cb1037d46116a24fcdd5c6d13ec2a322 /samples
parent839453f0b1f826ae9131209a9d0a69b9bf0f81b9 (diff)
downloadpython-lxml-83bbc2cba92c84a3f0a569a4e5ff2dd4f631cd7c.tar.gz
[svn r183] Some samples from ElementTree, used for testing.
--HG-- branch : trunk
Diffstat (limited to 'samples')
-rw-r--r--samples/simple-ns.xml5
-rw-r--r--samples/simple.xml5
2 files changed, 10 insertions, 0 deletions
diff --git a/samples/simple-ns.xml b/samples/simple-ns.xml
new file mode 100644
index 00000000..e6c1b4e0
--- /dev/null
+++ b/samples/simple-ns.xml
@@ -0,0 +1,5 @@
+<root xmlns='namespace'>
+ <element key='value'>text</element>
+ <element>text</element>tail
+ <empty-element/>
+</root>
diff --git a/samples/simple.xml b/samples/simple.xml
new file mode 100644
index 00000000..b1655e18
--- /dev/null
+++ b/samples/simple.xml
@@ -0,0 +1,5 @@
+<root>
+ <element key='value'>text</element>
+ <element>text</element>tail
+ <empty-element/>
+</root>