summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-30 21:52:06 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-30 21:52:06 (GMT)
commitdbbc3a964b461f20a05627340caa5ad304c047c0 (patch)
treeae56d761b593fb4ac230d97ba77a7451990a8e74 /Doc/howto
parentc876cec2168f16c1c370314a9565ca26b2825f7e (diff)
parent5aa761db52aab0329818fc29c7f0c3b8eb88e1ae (diff)
downloadcpython-dbbc3a964b461f20a05627340caa5ad304c047c0.zip
cpython-dbbc3a964b461f20a05627340caa5ad304c047c0.tar.gz
cpython-dbbc3a964b461f20a05627340caa5ad304c047c0.tar.bz2
merge with 3.4
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/pyporting.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/howto/pyporting.rst b/Doc/howto/pyporting.rst
index 5d648ad..783e456 100644
--- a/Doc/howto/pyporting.rst
+++ b/Doc/howto/pyporting.rst
@@ -565,10 +565,10 @@ Supporting Only Python 3 Going Forward From Python 2 Code
---------------------------------------------------------
If you have Python 2 code but going forward only want to improve it as Python 3
-code, then you can use 2to3_ to translate your Python 2 code to Python 3 code.
-This is only recommended, though, if your current version of your project is
-going into maintenance mode and you want all new features to be exclusive to
-Python 3.
+code, then you can use :ref:`2to3 <2to3-reference>` to translate your Python 2
+code to Python 3 code. This is only recommended, though, if your current
+version of your project is going into maintenance mode and you want all new
+features to be exclusive to Python 3.
Backporting Python 3 code to Python 2