summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorbusywhitespace <busywhitespace@tuta.io>2022-12-10 10:12:40 (GMT)
committerGitHub <noreply@github.com>2022-12-10 10:12:40 (GMT)
commite477348f36eff3f63ba509582622ea620fa9ae5b (patch)
tree7203c13471fc94d5ae87d2072b63a86242558bff /Doc/library
parenta9bad4d28413666edc57551dd439bca6a6a59dd9 (diff)
downloadcpython-e477348f36eff3f63ba509582622ea620fa9ae5b.zip
cpython-e477348f36eff3f63ba509582622ea620fa9ae5b.tar.gz
cpython-e477348f36eff3f63ba509582622ea620fa9ae5b.tar.bz2
gh-99970 Adding missing `optionflags` parameter in the documentation of `doctest` (#99971)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/doctest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst
index b6dd7f7..d6e4dca 100644
--- a/Doc/library/doctest.rst
+++ b/Doc/library/doctest.rst
@@ -1057,7 +1057,7 @@ from text files and modules with doctests:
from a text file using :func:`DocFileSuite`.
-.. function:: DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, setUp=None, tearDown=None, checker=None)
+.. function:: DocTestSuite(module=None, globs=None, extraglobs=None, test_finder=None, setUp=None, tearDown=None, optionflags=0, checker=None)
Convert doctest tests for a module to a :class:`unittest.TestSuite`.