diff options
| author | Guido van Rossum <guido@python.org> | 2000-11-13 17:11:45 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2000-11-13 17:11:45 (GMT) |
| commit | 56baca328f7c018c4ae776dd87f44a145f502773 (patch) | |
| tree | aa5418fee3c046353db47491d1746a523402fa2e /Lib/dos-8x3/test_xml.py | |
| parent | f6fc875831d0cfbf4077b4d2e1800365a78f7c2e (diff) | |
| download | cpython-56baca328f7c018c4ae776dd87f44a145f502773.zip cpython-56baca328f7c018c4ae776dd87f44a145f502773.tar.gz cpython-56baca328f7c018c4ae776dd87f44a145f502773.tar.bz2 | |
Removing DOS 8x3 support
Diffstat (limited to 'Lib/dos-8x3/test_xml.py')
| -rw-r--r-- | Lib/dos-8x3/test_xml.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Lib/dos-8x3/test_xml.py b/Lib/dos-8x3/test_xml.py deleted file mode 100644 index eb868a3..0000000 --- a/Lib/dos-8x3/test_xml.py +++ /dev/null @@ -1,25 +0,0 @@ -'''Test module to thest the xmllib module. - Sjoerd Mullender -''' - -from test_support import verbose - -testdoc = """\ -<?xml version="1.0" encoding="UTF-8" standalone='yes' ?> -<!-- comments aren't allowed before the <?xml?> tag, - but they are allowed before the <!DOCTYPE> tag --> -<!DOCTYPE greeting [ - <!ELEMENT greeting (#PCDATA)> -]> -<greeting>Hello, world!</greeting> -""" - -import xmllib -if verbose: - parser = xmllib.TestXMLParser() -else: - parser = xmllib.XMLParser() - -for c in testdoc: - parser.feed(c) -parser.close() |
