summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2010-01-16 13:34:19 +0000
committerLuke Plant <L.Plant.98@cantab.net>2010-01-16 13:34:19 +0000
commita0ccd5062346939219f4fa37d3257c213d0d9780 (patch)
treec781a1530c03d9cf7274f903998a6b0250d816c5 /docs/ref
parentad6368809cd6583eda23f3aed5ccae0ae44f15b6 (diff)
[1.1.X] Fixed #12622 - exists() mentioned in 1.1 docs
Thanks for the report kmike. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@12231 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/querysets.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index d030e32f09..9512dd0895 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -74,10 +74,6 @@ You can evaluate a ``QuerySet`` in the following ways:
if Entry.objects.filter(headline="Test"):
print "There is at least one Entry with the headline Test"
- Note: *Don't* use this if all you want to do is determine if at least one
- result exists, and don't need the actual objects. It's more efficient to
- use ``exists()`` (see below).
-
.. _pickling QuerySets:
Pickling QuerySets