Fix a wrong indentation for sublists.

This commit is contained in:
Georg Brandl 2007-09-07 14:14:40 +00:00
parent 2e638c3a8a
commit 8360d5de7e
1 changed files with 2 additions and 2 deletions

View File

@ -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