diff options
author | Georg Brandl <georg@python.org> | 2009-08-13 11:55:03 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-08-13 11:55:03 (GMT) |
commit | 3517e378d8b8846b31f79dd5f04c4106eafae38f (patch) | |
tree | 326c5b642f1177c422854cb665694ea20cb24000 /Doc/tutorial | |
parent | c2da5ce74873b05d5508148a9eb01513cea5b6c7 (diff) | |
download | cpython-3517e378d8b8846b31f79dd5f04c4106eafae38f.zip cpython-3517e378d8b8846b31f79dd5f04c4106eafae38f.tar.gz cpython-3517e378d8b8846b31f79dd5f04c4106eafae38f.tar.bz2 |
Fix duplicate sentence.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/classes.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 0cb5593..bdc49c4 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -143,9 +143,7 @@ do not copy data --- they just bind names to objects. The same is true for deletions: the statement ``del x`` removes the binding of ``x`` from the namespace referenced by the local scope. In fact, all operations that introduce new names use the local scope: in particular, :keyword:`import` statements and -function definitions bind the module or function name in the local scope. (The -:keyword:`global` statement can be used to indicate that particular variables -live in the global scope.) +function definitions bind the module or function name in the local scope. The :keyword:`global` statement can be used to indicate that particular variables live in the global scope and should be rebound there; the |