[Python-checkins] cpython (3.3): Use different word

andrew.kuchling python-checkins at python.org
Mon Feb 3 15:19:34 CET 2014


http://hg.python.org/cpython/rev/3afb9d94d18f
changeset:   88924:3afb9d94d18f
branch:      3.3
parent:      88922:58726e13dea1
user:        Andrew Kuchling <amk at amk.ca>
date:        Mon Feb 03 09:04:02 2014 -0500
summary:
  Use different word

files:
  Doc/tutorial/controlflow.rst |  3 +--
  1 files changed, 1 insertions(+), 2 deletions(-)


diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -370,7 +370,7 @@
                return False
            retries = retries - 1
            if retries < 0:
-               raise IOError('refusenik user')
+               raise IOError('uncooperative user')
            print(complaint)
 
 This function can be called in several ways:
@@ -756,4 +756,3 @@
 .. [#] Actually, *call by object reference* would be a better description,
    since if a mutable object is passed, the caller will see any changes the
    callee makes to it (items inserted into a list).
-

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


More information about the Python-checkins mailing list