Small indentation fix.

This commit is contained in:
Georg Brandl 2009-12-20 14:28:05 +00:00
parent 0cedb4bffa
commit 819a8fa0f6
1 changed files with 1 additions and 1 deletions

View File

@ -825,7 +825,7 @@ on the entrance and exit from the block. Some language have a construct that
looks like this::
with obj:
a = 1 # equivalent to obj.a = 1
a = 1 # equivalent to obj.a = 1
total = total + 1 # obj.total = obj.total + 1
In Python, such a construct would be ambiguous.