From: Georg Brandl Date: Sun, 20 Dec 2009 14:28:05 +0000 (+0000) Subject: Small indentation fix. X-Git-Tag: v2.7a2~147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=819a8fa0f694bea3099f704d01ba51c5350c71b1;p=python Small indentation fix. --- diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index 9507648fe7..5be6add9d8 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -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.