]> granicus.if.org Git - python/commitdiff
Missed a spot where the new optional optionflags argument needed to get
authorTim Peters <tim.peters@gmail.com>
Sun, 29 Jun 2003 03:11:20 +0000 (03:11 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 29 Jun 2003 03:11:20 +0000 (03:11 +0000)
passed on.

Lib/doctest.py

index 8b379cdf222f1595bb05fa3486dbb52180149214..8bda8d6c5fb7274c7fa7c245aad24211eab53684 100644 (file)
@@ -767,7 +767,7 @@ See doctest.testmod docs for the meaning of optionflags.
         if self.verbose:
             print "Running", name + ".__doc__"
         f, t = run_docstring_examples(object, self.globs, self.verbose, name,
-                                      self.compileflags)
+                                      self.compileflags, self.optionflags)
         if self.verbose:
             print f, "of", t, "examples failed in", name + ".__doc__"
         self.__record_outcome(name, f, t)