Index: modeltests/get_object_or_404/models.py
===================================================================
--- modeltests/get_object_or_404/models.py	(revision 5320)
+++ modeltests/get_object_or_404/models.py	(working copy)
@@ -69,6 +69,10 @@
 >>> get_object_or_404(Article.by_a_sir, title="Run away!")
 <Article: Run away!>
 
+# QuerySets can be used too
+>>> get_object_or_404(Article.objects.all(), title__contains="Run")
+<Article: Run away!>
+
 # get_list_or_404 can be used to get lists of objects
 >>> get_list_or_404(a.article_set, title__icontains='Run')
 [<Article: Run away!>]
@@ -83,4 +87,8 @@
 >>> get_list_or_404(Article.by_a_sir, title__icontains="Run")
 [<Article: Run away!>]
 
+# QuerySets can be used too
+>>> get_list_or_404(Article.objects.all(), title__icontains="Run")
+[<Article: Run away!>]
+
 """}
