From: Georg Brandl Date: Thu, 24 Jul 2008 07:09:21 +0000 (+0000) Subject: Fix indentation. X-Git-Tag: v2.6b3~235 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=340739e216788d132ffd985c7dc26bd3368ff80b;p=python Fix indentation. --- diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst index 38d01dcb74..ee7666d612 100644 --- a/Doc/library/2to3.rst +++ b/Doc/library/2to3.rst @@ -1,4 +1,3 @@ - .. _2to3-reference: 2to3 - Automated Python 2 to 3 code translation @@ -19,7 +18,7 @@ traverse looking for files with the ``.py`` extension. Here is a sample Python 2.x source file, :file:`example.py`:: def greet(name): - print "Hello, {0}!".format(name) + print "Hello, {0}!".format(name) print "What's your name?" name = raw_input() greet(name) @@ -65,7 +64,6 @@ changed, but 2to3 cannot fix automatically. In this case, 2to3 will print a warning beneath the diff for a file. - :mod:`lib2to3` - 2to3's library -------------------------------