Skip to content

Commit 3633da2

Browse files
committed
Use different word
1 parent 554f22f commit 3633da2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Doc/tutorial/controlflow.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ defined to allow. For example::
370370
return False
371371
retries = retries - 1
372372
if retries < 0:
373-
raise IOError('refusenik user')
373+
raise IOError('uncooperative user')
374374
print(complaint)
375375

376376
This function can be called in several ways:
@@ -756,4 +756,3 @@ extracted for you:
756756
.. [#] Actually, *call by object reference* would be a better description,
757757
since if a mutable object is passed, the caller will see any changes the
758758
callee makes to it (items inserted into a list).
759-

0 commit comments

Comments
 (0)