From: Georg Brandl Date: Sun, 6 Oct 2013 07:42:46 +0000 (+0200) Subject: Remove newline in method that makes it possible to copy example to the interactive... X-Git-Tag: v3.4.0a4~264^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0ec296599183e7a82ee4c0f096d51ae858b6f98;p=thirdparty%2FPython%2Fcpython.git Remove newline in method that makes it possible to copy example to the interactive interpreter. --- diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 3283e547847c..291410a00315 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -168,7 +168,6 @@ binding:: def do_global(): global spam spam = "global spam" - spam = "test spam" do_local() print("After local assignment:", spam)