diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt index e51daf6f83..41edf95d74 100644 --- a/docs/topics/db/queries.txt +++ b/docs/topics/db/queries.txt @@ -276,8 +276,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