diff options
author | Georg Brandl <georg@python.org> | 2009-08-13 12:07:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-08-13 12:07:42 (GMT) |
commit | ac73c5feae2ab253be495cf446fe536435bc7293 (patch) | |
tree | 30cfa5e12f277569749ffe2aa1ba99e321fff2d0 /Doc | |
parent | d1ea9dc9e677e01b621b7e921c556e51778e0f37 (diff) | |
download | cpython-ac73c5feae2ab253be495cf446fe536435bc7293.zip cpython-ac73c5feae2ab253be495cf446fe536435bc7293.tar.gz cpython-ac73c5feae2ab253be495cf446fe536435bc7293.tar.bz2 |
Merged revisions 74403 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r74403 | georg.brandl | 2009-08-13 13:55:03 +0200 (Do, 13 Aug 2009) | 1 line
Fix duplicate sentence.
........
Diffstat (limited to 'Doc')
-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 |