summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_minidom.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2011-05-09 06:12:19 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2011-05-09 06:12:19 (GMT)
commit7c038b472675cf6e9ade17cf0ab9f3c8b5250f90 (patch)
tree8982107ce1ec0e5369a851ea936a8a7618379edd /Lib/test/test_minidom.py
parent75813105a2cb35ce4486038dd9bb7ae07e2a2c72 (diff)
parent867754e3e3c907f87d1bb0282df628deb392cd62 (diff)
downloadcpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.zip
cpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.tar.gz
cpython-7c038b472675cf6e9ade17cf0ab9f3c8b5250f90.tar.bz2
merge 11164
Diffstat (limited to 'Lib/test/test_minidom.py')
-rw-r--r--Lib/test/test_minidom.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/Lib/test/test_minidom.py b/Lib/test/test_minidom.py
index acc4819..a3a2e35 100644
--- a/Lib/test/test_minidom.py
+++ b/Lib/test/test_minidom.py
@@ -42,26 +42,6 @@ def create_doc_with_doctype():
return doc
class MinidomTest(unittest.TestCase):
- def tearDown(self):
- try:
- Node.allnodes
- except AttributeError:
- # We don't actually have the minidom from the standard library,
- # but are picking up the PyXML version from site-packages.
- pass
- else:
- self.confirm(len(Node.allnodes) == 0,
- "assertion: len(Node.allnodes) == 0")
- if len(Node.allnodes):
- print("Garbage left over:")
- if verbose:
- print(list(Node.allnodes.items())[0:10])
- else:
- # Don't print specific nodes if repeatable results
- # are needed
- print(len(Node.allnodes))
- Node.allnodes = {}
-
def confirm(self, test, testname = "Test"):
self.assertTrue(test, testname)