summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorMichiel Beijen <michiel.beijen@gmail.com>2017-05-20 15:32:35 +0200
committerTim Graham <timograham@gmail.com>2017-05-20 21:46:18 -0400
commitec24108008b05b582c651e339cb55def6a655b8b (patch)
tree61f1d0c7e7e3ae609bc74fb26a106ceffb0e1a64 /docs/topics
parentf2b8fa1763116a9b8fbe7791a4b009c95cf8c0b1 (diff)
[1.11.x] Pointed Dive into Python links to python3 site
Backport of 48028c6f9a22742ff05da79822f5e3385d1b4c4c from master
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/http/urls.txt2
-rw-r--r--docs/topics/settings.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt
index 6e891e72f3..d5bae7f072 100644
--- a/docs/topics/http/urls.txt
+++ b/docs/topics/http/urls.txt
@@ -115,7 +115,7 @@ Example requests:
* ``/articles/2003/03/03/`` would match the final pattern. Django would call
the function ``views.article_detail(request, '2003', '03', '03')``.
-.. _Dive Into Python's explanation: http://www.diveintopython.net/regular_expressions/street_addresses.html#re.matching.2.3
+.. _Dive Into Python's explanation: http://www.diveintopython3.net/regular-expressions.html#streetaddresses
Named groups
============
diff --git a/docs/topics/settings.txt b/docs/topics/settings.txt
index 25b3f94fe3..668f90afe2 100644
--- a/docs/topics/settings.txt
+++ b/docs/topics/settings.txt
@@ -46,7 +46,7 @@ The value of ``DJANGO_SETTINGS_MODULE`` should be in Python path syntax, e.g.
``mysite.settings``. Note that the settings module should be on the
Python `import search path`_.
-.. _import search path: http://www.diveintopython.net/getting_to_know_python/everything_is_an_object.html
+.. _import search path: http://www.diveintopython3.net/your-first-python-program.html#importsearchpath
The ``django-admin`` utility
----------------------------