[Python-checkins] python/dist/src/Lib doctest.py,1.26,1.27

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sat, 28 Jun 2003 20:11:22 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv32106/Lib

Modified Files:
	doctest.py 
Log Message:
Missed a spot where the new optional optionflags argument needed to get
passed on.


Index: doctest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/doctest.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** doctest.py	27 Jun 2003 20:48:05 -0000	1.26
--- doctest.py	29 Jun 2003 03:11:20 -0000	1.27
***************
*** 768,772 ****
              print "Running", name + ".__doc__"
          f, t = run_docstring_examples(object, self.globs, self.verbose, name,
!                                       self.compileflags)
          if self.verbose:
              print f, "of", t, "examples failed in", name + ".__doc__"
--- 768,772 ----
              print "Running", name + ".__doc__"
          f, t = run_docstring_examples(object, self.globs, self.verbose, name,
!                                       self.compileflags, self.optionflags)
          if self.verbose:
              print f, "of", t, "examples failed in", name + ".__doc__"