summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-16 21:20:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-16 21:20:28 (GMT)
commit6be425c85f1c0279e62bb22a2445f862b930e966 (patch)
tree97eedf7d43630edaeb121d125c181325aade1cb2
parentc8fd1bc4dba361a75f2cc557256502ad43d59091 (diff)
downloadcpython-6be425c85f1c0279e62bb22a2445f862b930e966.zip
cpython-6be425c85f1c0279e62bb22a2445f862b930e966.tar.gz
cpython-6be425c85f1c0279e62bb22a2445f862b930e966.tar.bz2
be less wordy
-rw-r--r--Doc/library/2to3.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index e8ea861..8040124 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -79,12 +79,12 @@ flag. Note that *only* doctests will be refactored.
The :option:`-v` option enables the output of more information on the
translation process.
-When the :option:`-p` is passed to it, 2to3 treats ``print`` as a function
-instead of a statement. This is useful when ``from __future__ import
-print_function`` is being used. If this option is not given, the print fixer
-will surround print calls in an extra set of parentheses because it cannot
-differentiate between the and print statement with parentheses (such as ``print
-("a" + "b" + "c")``) and a true function call.
+When the :option:`-p` is passed, 2to3 treats ``print`` as a function instead of
+a statement. This is useful when ``from __future__ import print_function`` is
+being used. If this option is not given, the print fixer will surround print
+calls in an extra set of parentheses because it cannot differentiate between the
+and print statement with parentheses (such as ``print ("a" + "b" + "c")``) and a
+true function call.
:mod:`lib2to3` - 2to3's library