[Python-checkins] cpython: #16522: s/always 1/at most 1/.

r.david.murray python-checkins at python.org
Thu Nov 22 12:22:58 CET 2012


http://hg.python.org/cpython/rev/e456da396ad9
changeset:   80555:e456da396ad9
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Nov 22 06:22:41 2012 -0500
summary:
  #16522: s/always 1/at most 1/.

Correction thanks to Joey Geralnik.

files:
  Doc/library/doctest.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/doctest.rst b/Doc/library/doctest.rst
--- a/Doc/library/doctest.rst
+++ b/Doc/library/doctest.rst
@@ -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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list