From: Tim Peters Date: Sun, 29 Jun 2003 03:11:20 +0000 (+0000) Subject: Missed a spot where the new optional optionflags argument needed to get X-Git-Tag: v2.3c1~272 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=275abbd5257d8ff4c8883e41ee4a271e621bacae;p=thirdparty%2FPython%2Fcpython.git Missed a spot where the new optional optionflags argument needed to get passed on. --- diff --git a/Lib/doctest.py b/Lib/doctest.py index 8b379cdf222f..8bda8d6c5fb7 100644 --- a/Lib/doctest.py +++ b/Lib/doctest.py @@ -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)