summaryrefslogtreecommitdiff
path: root/docs/topics/db
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2009-12-26 06:44:02 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2009-12-26 06:44:02 +0000
commitd8ea6831f9042502dbb4f24e51fe521349bd97ad (patch)
tree90e7e71b1d9c6d10807b09ea043adf89964b0899 /docs/topics/db
parented192ea56fc9e8ffa4b0ad467a207303631f5f37 (diff)
[1.1.X] Fixed several broken and redirecting URLs in the documentation (fixes #12219, refs #12427).
Backport of r11994 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@11995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/db')
-rw-r--r--docs/topics/db/queries.txt2
-rw-r--r--docs/topics/db/sql.txt3
2 files changed, 2 insertions, 3 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 968ea7fbc8..5e3669bdbb 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -327,7 +327,7 @@ translates (roughly) into the following SQL::
arguments whose names and values are evaluated at runtime. For more
information, see `Keyword Arguments`_ in the official Python tutorial.
- .. _`Keyword Arguments`: http://docs.python.org/tut/node6.html#SECTION006720000000000000000
+ .. _`Keyword Arguments`: http://docs.python.org/tutorial/controlflow.html#keyword-arguments
If you pass an invalid keyword argument, a lookup function will raise
``TypeError``.
diff --git a/docs/topics/db/sql.txt b/docs/topics/db/sql.txt
index 9c534709ca..36ba1b9a90 100644
--- a/docs/topics/db/sql.txt
+++ b/docs/topics/db/sql.txt
@@ -85,5 +85,4 @@ A final note: If all you want to do is a custom ``WHERE`` clause, you can just
use the ``where``, ``tables`` and ``params`` arguments to the
:ref:`extra clause <extra>` in the standard queryset API.
-.. _Python DB-API: http://www.python.org/peps/pep-0249.html
-
+.. _Python DB-API: http://www.python.org/dev/peps/pep-0249/