From: Andrew Kuchling Date: Mon, 3 Feb 2014 14:04:02 +0000 (-0500) Subject: Use different word X-Git-Tag: v3.4.0rc1~108^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3633da239eb3f2582ddac3df97fbc9db4d16252d;p=thirdparty%2FPython%2Fcpython.git Use different word --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index b1456ae57f9f..97aea4fbcc4a 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -370,7 +370,7 @@ defined to allow. For example:: 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 @@ extracted for you: .. [#] 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). -