(original) (raw)

changeset: 80555:e456da396ad9 user: R David Murray rdmurray@bitdance.com date: Thu Nov 22 06:22:41 2012 -0500 files: Doc/library/doctest.rst description: #16522: s/always 1/at most 1/. Correction thanks to Joey Geralnik. diff -r 8ca6f4953c4b -r e456da396ad9 Doc/library/doctest.rst --- a/Doc/library/doctest.rst Thu Nov 22 00:14:28 2012 -0500 +++ b/Doc/library/doctest.rst Thu Nov 22 06:22:41 2012 -0500 @@ -636,8 +636,8 @@ .. 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 /rdmurray@bitdance.com