1
0
mirror of https://github.com/django/django.git synced 2025-10-27 15:46:10 +00:00

[1.6.x] Updated a bunch of hyperlinks in documentation

Backport of 626bdf648 from master.
This commit is contained in:
Claude Paroz
2013-12-08 18:39:26 +01:00
parent 45c0d2e1ce
commit ef9832f148
30 changed files with 52 additions and 52 deletions

View File

@@ -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
~~~~~~~~~~