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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0ec296599183e7a82ee4c0f096d51ae858b6f98;p=python 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 3283e54784..291410a003 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)