doc/xml.html doc/python.html fix tst.py text, which didn't import sys


Fri Nov 28 21:39:49 MST 2003 John Fleck <jfleck@inkstain.net>

	* doc/xml.html
	* doc/python.html
	fix tst.py text, which didn't import sys
diff --git a/doc/python.html b/doc/python.html
index 06eb5e1..9947734 100644
--- a/doc/python.html
+++ b/doc/python.html
@@ -62,7 +62,7 @@
     module tree.</li>
 </ul><p>The distribution includes a set of examples and regression tests for the
 python bindings in the <code>python/tests</code> directory. Here are some
-excerpts from those tests:</p><h3>tst.py:</h3><p>This is a basic test of the file interface and DOM navigation:</p><pre>import libxml2
+excerpts from those tests:</p><h3>tst.py:</h3><p>This is a basic test of the file interface and DOM navigation:</p><pre>import libxml2, sys
 
 doc = libxml2.parseFile(&quot;tst.xml&quot;)
 if doc.name != &quot;tst.xml&quot;: