diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-11-22 11:22:41 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-11-22 11:22:41 (GMT) |
commit | 60dd6e538f04fc09a6af468e6af358c1f85a5c32 (patch) | |
tree | 682cda4148ef835189c4738d34d3f0e1bbb589b2 /Doc/library/doctest.rst | |
parent | ded22c6c9d457ec6766e0cdffe3adea1430bcdeb (diff) | |
download | cpython-60dd6e538f04fc09a6af468e6af358c1f85a5c32.zip cpython-60dd6e538f04fc09a6af468e6af358c1f85a5c32.tar.gz cpython-60dd6e538f04fc09a6af468e6af358c1f85a5c32.tar.bz2 |
#16522: s/always 1/at most 1/.
Correction thanks to Joey Geralnik.
Diffstat (limited to 'Doc/library/doctest.rst')
-rw-r--r-- | Doc/library/doctest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst index 8822ef3..200de45 100644 --- a/Doc/library/doctest.rst +++ b/Doc/library/doctest.rst @@ -636,8 +636,8 @@ The second group of options controls how test failures are reported: .. data:: FAIL_FAST When specified, exit after the first failing example and don't attempt to run - the remaining examples. Thus, the number of failures reported will always be 1. - This flag may be useful during debugging, since examples after the first + the remaining examples. Thus, the number of failures reported will be at most + 1. This flag may be useful during debugging, since examples after the first failure won't even produce debugging output. .. versionadded:: 3.4 |