summaryrefslogtreecommitdiff
path: root/docs/topics/python3.txt
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2013-12-08 18:39:26 +0100
committerClaude Paroz <claude@2xlibre.net>2013-12-08 18:40:09 +0100
commit626bdf648a2c4c4f5fd25fbc4af41a1acfa18d7f (patch)
tree145beca61ea31d53977e6747b005d3c81c99bac0 /docs/topics/python3.txt
parentf876552f4bd3f4b87441856b6e93d97938c45d39 (diff)
Updated a bunch of hyperlinks in documentation
Diffstat (limited to 'docs/topics/python3.txt')
-rw-r--r--docs/topics/python3.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index d059bc042d..15c07ccbf0 100644
--- a/docs/topics/python3.txt
+++ b/docs/topics/python3.txt
@@ -6,7 +6,7 @@ Django 1.5 is the first version of Django to support Python 3. The same code
runs both on Python 2 (≥ 2.6.5) and Python 3 (≥ 3.2), thanks to the six_
compatibility layer.
-.. _six: http://packages.python.org/six/
+.. _six: http://pythonhosted.org/six/
This document is primarily targeted at authors of pluggable application
who want to support both Python 2 and 3. It also describes guidelines that
@@ -42,7 +42,7 @@ developers are used to dealing with such constraints.
Porting tools provided by Django are inspired by this philosophy, and it's
reflected throughout this guide.
-.. _Python's official porting guide: http://docs.python.org/py3k/howto/pyporting.html
+.. _Python's official porting guide: http://docs.python.org/3/howto/pyporting.html
.. _Pragmatic Unicode: http://nedbatchelder.com/text/unipain.html
Porting tips
@@ -246,7 +246,7 @@ consequence, the following pattern is sometimes necessary::
Be cautious if you have to `index bytestrings`_.
-.. _index bytestrings: http://docs.python.org/py3k/howto/pyporting.html#bytes-literals
+.. _index bytestrings: http://docs.python.org/3/howto/pyporting.html#bytes-literals
Exceptions
~~~~~~~~~~