From: Georg Brandl Date: Thu, 13 Aug 2009 11:55:03 +0000 (+0000) Subject: Fix duplicate sentence. X-Git-Tag: v3.2a1~2692 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3517e378d8b8846b31f79dd5f04c4106eafae38f;p=python Fix duplicate sentence. --- diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 0cb5593beb..bdc49c49ad 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