From 548703a1b81f6adf68a3dd4b497a88f5c4a31f4a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 26 Mar 1998 22:14:20 +0000 Subject: The usual. --- Lib/dos-8x3/test_xml.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Lib/dos-8x3/test_xml.py (limited to 'Lib/dos-8x3/test_xml.py') diff --git a/Lib/dos-8x3/test_xml.py b/Lib/dos-8x3/test_xml.py new file mode 100644 index 0000000000..eb868a370c --- /dev/null +++ b/Lib/dos-8x3/test_xml.py @@ -0,0 +1,25 @@ +'''Test module to thest the xmllib module. + Sjoerd Mullender +''' + +from test_support import verbose + +testdoc = """\ + + + +]> +Hello, world! +""" + +import xmllib +if verbose: + parser = xmllib.TestXMLParser() +else: + parser = xmllib.XMLParser() + +for c in testdoc: + parser.feed(c) +parser.close() -- cgit v1.2.1