[Python-checkins] r74407 - in python/branches/release31-maint: Doc/tutorial/classes.rst

georg.brandl python-checkins at python.org
Thu Aug 13 14:07:43 CEST 2009


Author: georg.brandl
Date: Thu Aug 13 14:07:42 2009
New Revision: 74407

Log:
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.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Doc/tutorial/classes.rst

Modified: python/branches/release31-maint/Doc/tutorial/classes.rst
==============================================================================
--- python/branches/release31-maint/Doc/tutorial/classes.rst	(original)
+++ python/branches/release31-maint/Doc/tutorial/classes.rst	Thu Aug 13 14:07:42 2009
@@ -143,9 +143,7 @@
 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


More information about the Python-checkins mailing list