]> granicus.if.org Git - python/commitdiff
pyporting howto: fix link target
authorGeorg Brandl <georg@python.org>
Thu, 30 Oct 2014 21:52:02 +0000 (22:52 +0100)
committerGeorg Brandl <georg@python.org>
Thu, 30 Oct 2014 21:52:02 +0000 (22:52 +0100)
Doc/howto/pyporting.rst

index 483dcae68698f9766c1db468e53e8b78fa4ec8e1..0d4e3cd23cbba4581c59cf4ff3dc2c6dc9815516 100644 (file)
@@ -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