[Python-checkins] cpython (merge 3.5 -> default): Merge from 3.5

berker.peksag python-checkins at python.org
Wed Jun 1 12:26:26 EDT 2016


https://hg.python.org/cpython/rev/8041366187dd
changeset:   101585:8041366187dd
parent:      101582:75dc64c8c22b
parent:      101584:89825636d368
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Wed Jun 01 09:36:40 2016 -0700
summary:
  Merge from 3.5

files:
  Doc/tutorial/classes.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -120,7 +120,7 @@
 If a name is declared global, then all references and assignments go directly to
 the middle scope containing the module's global names.  To rebind variables
 found outside of the innermost scope, the :keyword:`nonlocal` statement can be
-used; if not declared nonlocal, those variable are read-only (an attempt to
+used; if not declared nonlocal, those variables are read-only (an attempt to
 write to such a variable will simply create a *new* local variable in the
 innermost scope, leaving the identically named outer variable unchanged).
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list