From 819a8fa0f694bea3099f704d01ba51c5350c71b1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 20 Dec 2009 14:28:05 +0000 Subject: [PATCH] Small indentation fix. --- Doc/faq/design.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.50.1