Missed a spot where the new optional optionflags argument needed to get

passed on.
This commit is contained in:
Tim Peters 2003-06-29 03:11:20 +00:00
parent ef7343c6cd
commit 275abbd525
1 changed files with 1 additions and 1 deletions

View 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)