1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[1.7.x] Updated doc links to point to Python 3 documentation

Backport of 680a0f08b from master.
This commit is contained in:
Claude Paroz
2014-04-26 16:00:15 +02:00
parent abd68b5aff
commit e441cebce3
22 changed files with 68 additions and 71 deletions

View File

@@ -440,9 +440,9 @@ Settings
Better exceptions
~~~~~~~~~~~~~~~~~
The old :exc:`~exceptions.EnvironmentError` has split into an
:exc:`~exceptions.ImportError` when Django fails to find the settings module
and a :exc:`~exceptions.RuntimeError` when you try to reconfigure settings
The old :exc:`EnvironmentError` has split into an
:exc:`ImportError` when Django fails to find the settings module
and a :exc:`RuntimeError` when you try to reconfigure settings
after having already used them.
:setting:`LOGIN_URL` has moved
@@ -479,7 +479,7 @@ Different exception from ``get()``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Managers now return a :exc:`~django.core.exceptions.MultipleObjectsReturned`
exception instead of :exc:`~exceptions.AssertionError`:
exception instead of :exc:`AssertionError`:
Old (0.96)::