summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-20 13:30:10 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-07-20 13:30:10 (GMT)
commit83dfc307c1609815ec653aa7cbfbd0df7d9e300b (patch)
treefb7efec5f726abf40467191fb061d84f3b0e7322
parentc0379437fcacb641ee6afe7183a8351228ee1d7a (diff)
downloadcpython-83dfc307c1609815ec653aa7cbfbd0df7d9e300b.zip
cpython-83dfc307c1609815ec653aa7cbfbd0df7d9e300b.tar.gz
cpython-83dfc307c1609815ec653aa7cbfbd0df7d9e300b.tar.bz2
remove docs for deprecated -p option
-rw-r--r--Doc/library/2to3.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/2to3.rst b/Doc/library/2to3.rst
index 9b2b4e4..435aed1 100644
--- a/Doc/library/2to3.rst
+++ b/Doc/library/2to3.rst
@@ -86,13 +86,6 @@ document could also be refactored with this option.
The :option:`-v` option enables output of more information on the translation
process.
-When the :option:`-p` is passed, the :2to3fixer:`print` fixer ``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 print statement with parentheses (such as ``print
-("a" + "b" + "c")``) and a true function call.
-
.. _2to3-fixers: