Shortcut functions do not accept `QuerySet` objects, yet :)

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5745 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Gary Wilson Jr 2007-07-22 03:12:50 +00:00
parent d95e91b380
commit 63cc023eea
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ def get_object_or_404(klass, *args, **kwargs):
Use get() to return an object, or raise a Http404 exception if the object Use get() to return an object, or raise a Http404 exception if the object
does not exist. does not exist.
klass may be a Model, Manager, or QuerySet object. All other passed klass may be a Model or Manager object. All other passed
arguments and keyword arguments are used in the get() query. arguments and keyword arguments are used in the get() query.
Note: Like with get(), an AssertionError will be raised if more than one Note: Like with get(), an AssertionError will be raised if more than one
@ -42,7 +42,7 @@ def get_list_or_404(klass, *args, **kwargs):
Use filter() to return a list of objects, or raise a Http404 exception if Use filter() to return a list of objects, or raise a Http404 exception if
the list is empty. the list is empty.
klass may be a Model, Manager, or QuerySet object. All other passed klass may be a Model or Manager object. All other passed
arguments and keyword arguments are used in the filter() query. arguments and keyword arguments are used in the filter() query.
""" """
if isinstance(klass, Manager): if isinstance(klass, Manager):