[Python-checkins] CVS: python/dist/src/Lib/test test_minidom.py,1.7,1.8

Barry Warsaw python-dev@python.org
Tue, 26 Sep 2000 11:00:24 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27462

Modified Files:
	test_minidom.py 
Log Message:
Added an "import xml.parsers.expat" to turn errors due to not having
the parser built into ImportErrors.


Index: test_minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_minidom.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** test_minidom.py	2000/09/22 09:23:08	1.7
--- test_minidom.py	2000/09/26 18:00:20	1.8
***************
*** 2,5 ****
--- 2,6 ----
  
  from xml.dom.minidom import parse, Node, Document, parseString
+ import xml.parsers.expat
  
  import os.path