[Python-checkins] r58037 - python/trunk/Doc/reference/simple_stmts.rst
georg.brandl
python-checkins at python.org
Fri Sep 7 16:14:40 CEST 2007
Author: georg.brandl
Date: Fri Sep 7 16:14:40 2007
New Revision: 58037
Modified:
python/trunk/Doc/reference/simple_stmts.rst
Log:
Fix a wrong indentation for sublists.
Modified: python/trunk/Doc/reference/simple_stmts.rst
==============================================================================
--- python/trunk/Doc/reference/simple_stmts.rst (original)
+++ python/trunk/Doc/reference/simple_stmts.rst Fri Sep 7 16:14:40 2007
@@ -173,10 +173,10 @@
.. 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
More information about the Python-checkins
mailing list