From 8360d5de7e7497c9f4f83c7d43d0b20bf4316d88 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 7 Sep 2007 14:14:40 +0000 Subject: [PATCH] Fix a wrong indentation for sublists. --- Doc/reference/simple_stmts.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst index 6c62133ee7f..7b555346433 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