Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3633da23
Commit
3633da23
authored
Feb 03, 2014
by
Andrew Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use different word
parent
554f22ff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
Doc/tutorial/controlflow.rst
Doc/tutorial/controlflow.rst
+1
-2
No files found.
Doc/tutorial/controlflow.rst
View file @
3633da23
...
@@ -370,7 +370,7 @@ defined to allow. For example::
...
@@ -370,7 +370,7 @@ defined to allow. For example::
return False
return False
retries = retries - 1
retries = retries - 1
if retries < 0:
if retries < 0:
raise IOError('
refusenik
user')
raise IOError('
uncooperative
user')
print(complaint)
print(complaint)
This function can be called in several ways:
This function can be called in several ways:
...
@@ -756,4 +756,3 @@ extracted for you:
...
@@ -756,4 +756,3 @@ extracted for you:
.. [#] Actually, *call by object reference* would be a better description,
.. [#] Actually, *call by object reference* would be a better description,
since if a mutable object is passed, the caller will see any changes the
since if a mutable object is passed, the caller will see any changes the
callee makes to it (items inserted into a list).
callee makes to it (items inserted into a list).
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment