Added 'New in Django development version' to docs/db-api.txt change from [5746]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5757 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-07-25 03:15:05 +00:00
parent da6b3865ae
commit 6b7c33286a
1 changed files with 3 additions and 3 deletions

View File

@ -1911,9 +1911,9 @@ For example::
# entry with a primary key of 3
e = get_object_or_404(Entry.recent_entries, pk=3)
If you need to use a custom method that you added to a custom manager,
then you can provide ``get_object_or_404()`` with a ``QuerySet`` object.
For example::
**New in Django development version:** The first argument to
``get_object_or_404()`` can be a ``QuerySet`` object. This is useful in cases
where you've defined a custom manager method. For example::
# Use a QuerySet returned from a 'published' method of a custom manager
# in the search for an entry with primary key of 5