'''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()