[Python-checkins] python/dist/src/Lib doctest.py, 1.36.2.15, 1.36.2.16

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Fri Aug 6 01:23:29 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13070

Modified Files:
      Tag: tim-doctest-branch
	doctest.py 
Log Message:
Format nits.


Index: doctest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/doctest.py,v
retrieving revision 1.36.2.15
retrieving revision 1.36.2.16
diff -C2 -d -r1.36.2.15 -r1.36.2.16
*** doctest.py	5 Aug 2004 23:11:21 -0000	1.36.2.15
--- doctest.py	5 Aug 2004 23:23:26 -0000	1.36.2.16
***************
*** 1764,1768 ****
  
      def debug(self):
!         runner = DebugRunner(verbose = False,
                               optionflags=self.__test_runner.optionflags)
          runner.run(self._dt_test, nooutput)
--- 1764,1768 ----
  
      def debug(self):
!         runner = DebugRunner(verbose=False,
                               optionflags=self.__test_runner.optionflags)
          runner.run(self._dt_test, nooutput)
***************
*** 1815,1819 ****
      suite = unittest.TestSuite()
      for test in tests:
!         if len(test.examples) == 0: continue
          if not test.filename:
              filename = module.__file__
--- 1815,1820 ----
      suite = unittest.TestSuite()
      for test in tests:
!         if len(test.examples) == 0:
!             continue
          if not test.filename:
              filename = module.__file__



More information about the Python-checkins mailing list