From: Georg Brandl Date: Fri, 7 Sep 2007 14:14:40 +0000 (+0000) Subject: Fix a wrong indentation for sublists. X-Git-Tag: v2.6a1~1329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8360d5de7e7497c9f4f83c7d43d0b20bf4316d88;p=python Fix a wrong indentation for sublists. --- diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 6c62133ee7..7b55534643 100644 --- a/Doc/reference/simple_stmts.rst +++ b/Doc/reference/simple_stmts.rst @@ -173,10 +173,10 @@ Assignment of an object to a single target is recursively defined as follows. .. index:: statement: global -* If the name does not occur in a :keyword:`global` statement in the current + * If the name does not occur in a :keyword:`global` statement in the current code block: the name is bound to the object in the current local namespace. -* Otherwise: the name is bound to the object in the current global namespace. + * Otherwise: the name is bound to the object in the current global namespace. .. index:: single: destructor