Fixed #11188 -- Removed incorrect doc note about step being unsupported when slicing query sets.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10835 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
077a94c550
commit
e258961e4f
|
@ -279,8 +279,7 @@ This returns the sixth through tenth objects (``OFFSET 5 LIMIT 5``)::
|
|||
|
||||
>>> Entry.objects.all()[5:10]
|
||||
|
||||
Negative indexing (i.e. ``Entry.objects.all()[-1]``) is not supported, nor is
|
||||
the third "step" slice parameter.
|
||||
Negative indexing (i.e. ``Entry.objects.all()[-1]``) is not supported.
|
||||
|
||||
Generally, slicing a ``QuerySet`` returns a new ``QuerySet`` -- it doesn't
|
||||
evaluate the query. An exception is if you use the "step" parameter of Python
|
||||
|
|
Loading…
Reference in New Issue