From: Senthil Kumaran Date: Fri, 9 Mar 2012 04:56:52 +0000 (-0800) Subject: Fix closes Issue: 14217 - 3.2 branch X-Git-Tag: v3.3.0a2~255^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=065dedaf474279e5c598ba23216887212e9fd29e;p=thirdparty%2FPython%2Fcpython.git Fix closes Issue: 14217 - 3.2 branch --- diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 68c4e5d88687..5ce366925816 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -180,7 +180,10 @@ binding:: scope_test() print("In global scope:", spam) -The output of the example code is:: +The output of the example code is: + +.. code-block:: none + After local assignment: test spam After nonlocal assignment: nonlocal spam