summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorAndrew Kuchling <amk@amk.ca>2014-02-03 14:20:22 (GMT)
committerAndrew Kuchling <amk@amk.ca>2014-02-03 14:20:22 (GMT)
commitae376e5ddc037825cf70adfbefeb2ac05123da52 (patch)
tree3754a4c49d7e1ce3c94991e35ed17d620a16495c /Doc/tutorial
parentd591cba9cfefed8b589d65262df97238e79815db (diff)
parent3633da239eb3f2582ddac3df97fbc9db4d16252d (diff)
downloadcpython-ae376e5ddc037825cf70adfbefeb2ac05123da52.zip
cpython-ae376e5ddc037825cf70adfbefeb2ac05123da52.tar.gz
cpython-ae376e5ddc037825cf70adfbefeb2ac05123da52.tar.bz2
Merge from 3.3
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/controlflow.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index b1456ae..97aea4f 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).
-