[Docstring-checkins] CVS: dps/test DPSTestSupport.py,1.3,1.4
Status: Pre-Alpha
Brought to you by:
goodger
From: David G. <go...@us...> - 2002-01-30 04:47:14
|
Update of /cvsroot/docstring/dps/test In directory usw-pr-cvs1:/tmp/cvs-serv22065/dps/test Modified Files: DPSTestSupport.py Log Message: - Updated new document Node creation protocol. Index: DPSTestSupport.py =================================================================== RCS file: /cvsroot/docstring/dps/test/DPSTestSupport.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DPSTestSupport.py 2002/01/26 00:04:50 1.3 --- DPSTestSupport.py 2002/01/30 04:47:11 1.4 *************** *** 223,227 **** if self.runInDebugger: pdb.set_trace() ! doctree = self.parser.parse(self.input) for transformClass in self.transforms: transformClass().transform(doctree) --- 223,228 ---- if self.runInDebugger: pdb.set_trace() ! doctree = utils.newdocument(warninglevel=4, errorlevel=4) ! self.parser.parse(self.input, doctree) for transformClass in self.transforms: transformClass().transform(doctree) *************** *** 235,239 **** print '-' * 70 print self.input ! doctree = self.parser.parse(self.input) print '-' * 70 print doctree.pformat() --- 236,242 ---- print '-' * 70 print self.input ! doctree = utils.newdocument( ! languagecode='en', warninglevel=4, errorlevel=4) ! self.parser.parse(self.input, doctree) print '-' * 70 print doctree.pformat() |