[Python-checkins] r76924 - python/trunk/Doc/faq/design.rst

georg.brandl python-checkins at python.org
Sun Dec 20 15:28:06 CET 2009


Author: georg.brandl
Date: Sun Dec 20 15:28:05 2009
New Revision: 76924

Log:
Small indentation fix.

Modified:
   python/trunk/Doc/faq/design.rst

Modified: python/trunk/Doc/faq/design.rst
==============================================================================
--- python/trunk/Doc/faq/design.rst	(original)
+++ python/trunk/Doc/faq/design.rst	Sun Dec 20 15:28:05 2009
@@ -825,7 +825,7 @@
 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.


More information about the Python-checkins mailing list