From 6b7c33286a42d3f5432932240074359ef3108f98 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 25 Jul 2007 03:15:05 +0000 Subject: [PATCH] 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 --- docs/db-api.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/db-api.txt b/docs/db-api.txt index 9d0d4358f50..39f4b1e16f5 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -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